﻿.auth-body {
    margin: 0;
    padding: 0;
    background-color: #e0e0e0; 
    font-family: sans-serif;
    height: 100vh;
}

.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* align top, not stretch */
    padding-top: 50px;
    min-height: 100vh;
    box-sizing: border-box;
}

.auth-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    min-width: 300px;
    max-width: 400px;
    /* Do not set height */
    align-self: flex-start; /* optional, ensures it doesn't stretch in some browsers */
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.auth-container h2 {
    color: var(--bitdirect-navy);
}
