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

.login-page {
    background: #f8f9fd;
    font-family: 'Poppins', sans-serif;
}

.login-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.login-card {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px 36px 28px;
}

.login-eyebrow {
    margin: 0 0 8px;
    color: #b8b8b8;
    font-size: 14px;
    font-weight: 400;
}

.login-card h1 {
    margin: 0 0 28px;
    color: #000;
    font-size: 30px;
    font-weight: 400;
}

.login-form .form-label {
    color: #000;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.login-form .form-control {
    height: 48px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    color: #000;
    font-size: 14px;
}

.login-form .form-control:focus {
    border-color: #e3a14a;
    box-shadow: none;
}

.login-submit {
    width: 100%;
    border: 0;
    border-radius: 4px;
    background: #e3a14a;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    height: 48px;
    margin-top: 12px;
}

.login-submit:hover,
.login-submit:focus {
    background: #d19240;
    color: #fff;
}

.login-options {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.login-options a {
    color: #e3a14a;
    text-decoration: none;
}

.login-options a:hover {
    color: #d19240;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777;
    cursor: pointer;
}

.remember-me input {
    accent-color: #e3a14a;
}

.login-alert {
    margin-bottom: 16px;
}
