@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

.login-container {
    min-height: calc(100vh - 80px);
    background: #f7f6f2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 30px 20px;
    font-family: 'Inter', sans-serif;
}

.login-container::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #c5a880;
    filter: blur(180px);
    opacity: .18;
    top: -120px;
    right: -120px;
}

.login-card {
    width: 420px;
    max-width: 100%;
    background: white;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    position: relative;
    z-index: 2;
}

.logo-section {
    text-align: center;
    margin-bottom: 35px;
}

.logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: linear-gradient(135deg,#c5a880,#9d7a4d);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
}

.logo-section h1 {
    font-size: 28px;
    letter-spacing: 3px;
    color: #2b2b2b;
    margin: 0;
}

.logo-section p {
    color: #777;
    margin-top: 8px;
    font-size: 15px;
}

.login-form-group {
    margin-bottom: 22px;
}

.login-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.login-form-group input {
    width: 100%;
    padding: 14px 48px 14px 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    outline: none;
    font-size: 15px;
    transition: .3s;
}

.login-form-group input:focus {
    border-color: #c5a880;
    box-shadow: 0 0 0 3px rgba(197,168,128,.2);
}

.password-box {
    position: relative;
}

.eye-btn {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

#loginBtn {
    width: 100%;
    border: none;
    padding: 15px;
    border-radius: 12px;
    background: linear-gradient(135deg,#c5a880,#9d7a4d);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

#loginBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197,168,128,.35);
}

#loginBtn:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
}

#loginError {
    display: none;
    color: #d63031;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
    min-height: 20px;
}

.login-footer {
    text-align: center;
    margin-top: 30px;
    color: #999;
    font-size: 13px;
}

@media (max-width: 500px) {
    .login-card {
        width: 100%;
        padding: 30px;
    }
} 
