/*
AI Assistance Disclosure:
    Portions of this code were developed with the assistance of generative AI tools.
    All AI-assisted contributions have been reviewed by the developer.
*/

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    text-align: center;
}

/* -------------------------------------------------- */
/* Sign Up Page Specific Styles */
/* -------------------------------------------------- */
#signupForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
    width: 100%;
    max-width: 350px;
    margin-right: auto;
    margin-left: 7%;
}

#signupForm .row {
    display: flex;
    gap: 12px;
    width: 108%;
}

#signupForm .row input {
    flex: 1;
    min-width: 0; /* Prevents flex items from overflowing */
}

.instruction {
    color: #52606d;
    font-size: 0.9rem;
    margin-top: 20px;
    margin-bottom: 15px;
    font-style: italic;
}

.login-link {
    margin-top: 10px;
    font-size: 0.95rem;
}