@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.login-wrapper {
    min-height: calc(91vh - 28px);
    margin-top: -64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-45deg, #fffbeb, #fef3c7, #fffbeb, #ffffff, #fffbeb);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

.login-card {
    background: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 360px;
    padding: 2.5rem 2rem;
}

.login-logo-wrap {
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.login-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a5f;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.login-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 0.4rem;
}

.login-input {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid #ebebeb;
    border-radius: 0.5rem;
    font-size: 0.88rem;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fafafa;
    color: #1a2332;
}

.login-input:focus {
    border-color: #FBBF24;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #d1d5db;
    transition: color 0.2s;
}

.password-toggle:hover {
    color: #9ca3af;
}

.login-btn {
    width: 100%;
    padding: 0.7rem;
    background: #FBBF24;
    color: #1e3a5f;
    font-weight: 700;
    font-size: 0.88rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s, box-shadow 0.2s;
    letter-spacing: 0.01em;
}

.login-btn:hover {
    background: #F59E0B;
    box-shadow: 0 4px 14px rgba(251, 191, 36, 0.3);
}

.login-links {
    text-align: center;
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.login-links a {
    color: #6b7280;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
}

.login-links a:hover {
    color: #FBBF24;
}

.login-divider {
    border: none;
    border-top: 1px solid #f5f5f5;
    margin: 1.5rem 0;
}
.login-card, .login-card * {
    font-family: 'Geist', sans-serif;
}
