.auth-container {
    background-color: var(--light-gray);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container .auth-form {
    color: var(--primary);
    background-color: var(--white);
    width: 100%;
    max-width: 28rem;
    padding: 3rem 2rem;
    border: 1px solid var(--gray);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.auth-container .auth-form .form-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.auth-container .auth-form .form-header .logo {
    width: 100%;
    max-width: 10rem;
}
