/* Sign Up Page Styles */

/* Sign Up Hero */
.signup-hero {
    padding: 4rem 5%;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.signup-hero .container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.signup-content {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.signup-header {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    padding: 2.5rem;
    text-align: center;
}

.signup-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.signup-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Sign Up Form */
.signup-form-container {
    padding: 2.5rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.8rem;
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #636e72;
    font-size: 1rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: #6c5ce7;
    width: 20px;
}

.form-group input,
.form-group select {
    padding: 0.8rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    color: #2d3436;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #6c5ce7;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-group input::placeholder {
    color: #adb5bd;
}

/* Password Input */
.password-input {
    position: relative;
}

.password-input input {
    width: 100%;
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #636e72;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.3rem;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #6c5ce7;
}

/* Password Strength */
.password-strength {
    margin-top: 0.5rem;
}

.strength-bar {
    height: 4px;
    background-color: #95a8bb;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.3rem;
    position: relative;
}

.strength-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #dc3545;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.strength-text {
    font-size: 0.8rem;
    color: #636e72;
}

#strengthText {
    font-weight: 600;
}

/* Checkbox Group */
.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #6c5ce7;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    font-size: 0.9rem;
    color: #636e72;
    cursor: pointer;
}

.checkbox-group a {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: #636e72;
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e9ecef;
}

.divider span {
    padding: 0 1rem;
}

/* Social Sign Up */
.social-signup {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.social-btn.google {
    color: #2d3436;
    border-color: #e9ecef;
}

.social-btn.google:hover {
    background-color: #f8f9fa;
}

.social-btn.facebook {
    color: #1877f2;
    border-color: #1877f2;
}

.social-btn.facebook:hover {
    background-color: rgba(24, 119, 242, 0.05);
}

.social-btn.apple {
    color: #2d3436;
    border-color: #2d3436;
}

.social-btn.apple:hover {
    background-color: #f8f9fa;
}

/* Login Link */
.login-link {
    text-align: center;
    margin-top: 1.5rem;
    color: #636e72;
    font-size: 0.9rem;
}

.login-link a {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Sign Up Benefits */
.signup-benefits {
    background-color: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: #2d3436;
    margin-bottom: 1rem;
}

.benefits-header p {
    color: #636e72;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: #2d3436;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: #636e72;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

/* Testimonial */
.testimonial {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 10px;
    padding: 2rem;
    color: white;
    text-align: center;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Pricing CTA */
.pricing-cta {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    text-align: center;
}

.pricing-cta .container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-stats .stat {
    text-align: center;
}

.cta-stats h3 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-stats p {
    color: rgb(0, 0, 0);
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .signup-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .signup-benefits {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .signup-hero {
        padding: 2rem 5%;
    }
    
    .signup-header h1 {
        font-size: 2rem;
    }
    
    .signup-form-container {
        padding: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .benefits-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .signup-header {
        padding: 2rem 1.5rem;
    }
    
    .signup-form-container {
        padding: 1.5rem;
    }
    
    .signup-benefits {
        padding: 1.5rem;
    }
    
    .social-signup {
        flex-direction: column;
    }
    
    .social-btn {
        width: 100%;
    }
    
    .checkbox-group {
        align-items: flex-start;
    }
    
    .checkbox-group label {
        font-size: 0.85rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

.strength-bar {
    height: 5px;
    background: #e9ecef;
    border-radius: 5px;
    margin: 8px 0;
    overflow: hidden;
    position: relative;
}

.strength-fill {
    height: 100%;
    border-radius: 5px;
    transition: all 0.3s ease;
}