/* ===============================================
   Auth Page Styles - Dormitory System
   =============================================== */

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.login-box {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 380px;
    text-align: center;
}

.login-box h2 {
    color: #333;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: #fca415;
    outline: none;
}

.btn-login {
    background: #fca415;
    color: #fff;
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-login:hover {
    background: #e39512;
}

.error-msg {
    color: #d63031;
    background: #ffe6e6;
    border: 1px solid #ffcccc;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
}

.note {
    margin-top: 20px;
    font-size: 13px;
    color: #777;
}
.logout-msg {
    background: #e0f8e9;
    color: #2d8649;
    border: 1px solid #b9f0c5;
    padding: 10px 15px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 500;
}
