/* 
==============================================
SIGNUP SECTION STYLES
Uses global.css for all form styling
==============================================
*/

/* Section display and positioning */
#signup-section {
    position: relative;
    z-index: 2;
    display: none;
    padding-top: 100px;
}

#signup-section.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Simple container */
.signup-container {
    min-height: calc(100vh - 80px);
    padding: 1rem;
     
}

.signup-form-wrapper {
    width: 100%;
    max-width: 400px;
}

/* Title */
.signup-title {
    font-family: "Open Sans", sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #222222;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .signup-container {
        padding: 1rem;
    }
    
    .signup-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .signup-title {
        font-size: 24px;
    }
}
