/* Ensure the body allows the container to be the boss */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* Horizontal Center */
    align-items: center;     /* Vertical Center */
    min-height: 100vh;
    background-color: #0f172a;
}

/* The parent that holds both Card and Footer */
.auth-outer-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Keeps card and footer centered horizontally */
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.auth-card {
    width: 100%; /* Takes full width of the 420px wrapper */
    background: #1e293b;
    padding: 45px;
    border-radius: 16px;
    border: 1px solid #334155;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    box-sizing: border-box; /* Crucial for padding/width calculation */
}

/* Style the footer specifically for the login page context */
footer {
    margin-top: 25px; /* Space between the bottom of the card and footer */
    width: 100%;
    text-align: center;
}