/* =============================================
   SIGNUP.CSS - Signup page specific styles
   ============================================= */

/* ----------------- Page Layout ----------------- */
.signup-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #FAFAFA 0%, #F0F0F0 100%);
}

/* ----------------- Signup Section ----------------- */
.signup-section {
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.signup-container {
    width: 100%;
    max-width: 28rem;
    background: #FFFFFF;
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.signup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.signup-header h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.signup-header p {
    color: #666666;
    font-size: 0.9375rem;
}

/* ----------------- Form Styles ----------------- */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333333;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.form-group input::placeholder {
    color: #999999;
}

.form-group textarea {
    resize: vertical;
    min-height: 6rem;
}

/* ----------------- Submit Button ----------------- */
.signup-form .btn-primary {
    margin-top: 0.5rem;
    width: 100%;
    padding: 1rem;
}

/* ----------------- Terms & Privacy ----------------- */
.form-terms {
    font-size: 0.8125rem;
    color: #666666;
    text-align: center;
    margin-top: 1rem;
}

.form-terms a {
    color: #FF6600;
    text-decoration: underline;
}

/* ----------------- Success/Error Messages ----------------- */
.form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.form-message.error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF9A9A;
}

.form-message.visible {
    display: block;
}

/* ----------------- Alternative CTA ----------------- */
.signup-alternative {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E5E5;
}

.signup-alternative p {
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 0.5rem;
}

.signup-alternative a {
    color: #FF6600;
    font-weight: 600;
    text-decoration: underline;
}

/* ----------------- Mobile / Responsive ----------------- */
@media (max-width: 480px) {
    .signup-section {
        padding: 2rem 1rem;
    }
    
    .signup-container {
        padding: 2rem 1.5rem;
    }
    
    .signup-header h1 {
        font-size: 1.5rem;
    }
}

/* 
   =============================================
   ADD YOUR CUSTOM SIGNUP STYLES BELOW
   =============================================
*/
