body.authentication-bg {
    background: #f8f9fa url('../images/bg-pattern-light.svg') repeat top center;
    background-size: cover;
}
.auth-fluid {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.auth-fluid-form-box {
    width: 100%;
    max-width: 400px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
    text-align: left;
}
.auth-brand img {
    height: 48px;
}
.form-label {
    font-weight: 500;
}
.btn-primary {
    font-weight: 600;
    letter-spacing: 0.5px;
}
.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}
.password-requirements {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.5rem;
}
.password-requirements ul {
    margin: 0;
    padding-left: 1.2rem;
}
.password-requirements li {
    margin-bottom: 0.2rem;
}
.back-to-login {
    text-align: center;
    margin-top: 1rem;
}
.back-to-login a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
}
.back-to-login a:hover {
    color: #495057;
    text-decoration: underline;
}
.user-info {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    border-left: 4px solid #0d6efd;
}
.user-info small {
    color: #6c757d;
} 