/* 
==============================================
SIGNUP SECTION STYLES
==============================================
*/

/* Ensure signup section follows the same pattern as other sections */
#signup-section {
    position: relative;
    z-index: 2;
    display: none;
    padding-top: 80px;
}

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

/* Signup Container */
.signup-container {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.signup-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

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

/* Signup Form */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Form Groups */
.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 0px!important;
}

.form-group label {
    font-family: 'Overpass', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

/* Input Styles */
.form-group input {
    height: 33px;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(171, 171, 171, 0.41);
    border-radius: 5px;
    font-family: Overpass;
    font-size: 16px;
    font-weight: 500;
    color: rgb(107, 107, 107);
    padding: 5px 10px 0px;
    opacity: 1;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #E85E53;
    box-shadow: 0 0 0 2px rgba(232, 94, 83, 0.2);
}

.form-group input::placeholder {
    color: rgba(107, 107, 107, 0.6);
}

/* Signup Button */
.signup-button {
    background: linear-gradient(135deg, #E85E53, #C633A3);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: 'Overpass', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
    align-self: center;
}

.signup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 94, 83, 0.3);
}

.signup-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .signup-container {
        padding: 1rem;
    }
    
    .signup-form-wrapper {
        padding: 2rem;
        max-width: 100%;
    }
    
    .signup-title {
        font-size: 28px;
    }
    
    .form-group input {
        width: 100%;
        max-width: 300px;
    }
    
    .signup-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .signup-form-wrapper {
        padding: 1.5rem;
    }
    
    .signup-title {
        font-size: 24px;
    }
    
    .form-group input {
        width: 100%;
        max-width: 250px;
    }
    
    .signup-button {
        width: 100%;
        max-width: 250px;
    }
}


