/* signup.css */

/* 
   All core authentication styles are now handled by shared/css/auth-styles.css 
   to ensure perfect consistency between Login and Signup pages.
   
   This file is preserved to prevent 404 errors from the template <link> tag
   and allows for specific layout tweaks if needed in the future.
*/

#signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#signup-form .input-group {
    margin-bottom: 0; /* Let flex gap handle spacing */
}

/* Ensure submit button has breathing room if form is dense */
#signup-form #submit-button {
    margin-top: 0.5rem;
}
