body {
    background-color: #F3F5F9;
    font-family: 'IBM Plex Sans', sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background: #FFFFFF;
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.login-title {
    font-size: 24px;
    font-weight: 600;
    color: #1B2A4A;
    text-align: center;
    margin: 0 0 10px 0;
}

.login-subtitle {
    font-size: 14px;
    color: #5A6B85;
    text-align: center;
    margin: 0 0 25px 0;
    line-height: 1.4;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #5A6B85;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    border: 1px solid #DDE3ED;
    border-radius: 6px;
    font-size: 15px;
    color: #1B2A4A;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: #a4c1e2;
}

.form-control::placeholder {
    color: rgba(27, 42, 74, 0.5);
    opacity: 1;
}

.btn-login {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.auth-link {
    font-size: 13px;
    color: #5A6B85;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-link:hover {
    color: #1B2A4A;
    text-decoration: underline;
}

.auth-forgot-link-wrapper {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 20px;
}

.auth-forgot-link-wrapper a {
    font-size: 13px;
    color: #5A6B85;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-forgot-link-wrapper a:hover {
    color: #1B2A4A;
    text-decoration: underline;
}

.auth-back-link-wrapper {
    text-align: center;
    margin-top: 20px;
}

.auth-back-link-wrapper a {
    font-size: 14px;
    color: #5A6B85;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.auth-back-link-wrapper a:hover {
    color: #1B2A4A;
}

.auth-back-link-wrapper a i,
.auth-back-link-wrapper a svg {
    transition: transform 0.2s ease;
}

.auth-back-link-wrapper a:hover i,
.auth-back-link-wrapper a:hover svg {
    transform: translateX(-3px);
}