/* How to Register Page Specific Styles */

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1F1835 0%, #2A1F3D 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FDE7B3" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #FDE7B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #FDE7B3;
}

.hero-description a {
    color: #FDE7B3;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.hero-description a:hover {
    color: #ffffff;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* How to Login Section */
.how-to-login {
    padding: 4rem 0;
    background: #1F1835;
}

.login-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(206, 0, 12, 1) 0%, rgba(144, 0, 6, 1) 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #FDE7B3;
    line-height: 1.5;
    margin: 0;
}

.login-description {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #FDE7B3;
    margin: 0;
}

.login-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Mobile App Login Section */
.mobile-app-login {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2A1F3D 0%, #1F1835 100%);
}

.mobile-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mobile-app-text h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.mobile-app-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #FDE7B3;
    margin-bottom: 2rem;
}

.mobile-app-text a {
    color: #FDE7B3;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.mobile-app-text a:hover {
    color: #ffffff;
}

.mobile-app-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mobile-app-image img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Troubleshooting Section */
.troubleshooting {
    padding: 4rem 0;
    background: #1F1835;
}

.troubleshooting-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #FDE7B3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.troubleshooting-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.troubleshooting-table table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.troubleshooting-table th {
    background: linear-gradient(135deg, rgba(84, 70, 161, 0.8) 0%, rgba(63, 53, 120, 0.8) 100%);
    color: #ffffff;
    font-weight: 600;
    padding: 1.5rem 1rem;
    text-align: left;
}

.troubleshooting-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #FDE7B3;
}

.troubleshooting-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Why Login Matters Section */
.why-login-matters {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2A1F3D 0%, #1F1835 100%);
}

.why-login-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.why-login-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #FDE7B3;
    margin-bottom: 1.5rem;
}

.why-login-text a {
    color: #FDE7B3;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.why-login-text a:hover {
    color: #ffffff;
}

.why-login-image img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.why-login-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(206, 0, 12, 0.1) 0%, rgba(144, 0, 6, 0.1) 100%);
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #FDE7B3;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: #1F1835;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.faq-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: #FDE7B3;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .mobile-app-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .why-login-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .login-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .how-to-login {
        padding: 3rem 0;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .step-number {
        align-self: center;
    }
    
    .mobile-app-login {
        padding: 3rem 0;
    }
    
    .mobile-app-text h2 {
        font-size: 2rem;
    }
    
    .mobile-app-actions {
        justify-content: center;
    }
    
    .troubleshooting {
        padding: 3rem 0;
    }
    
    .troubleshooting-table {
        font-size: 0.9rem;
    }
    
    .troubleshooting-table th,
    .troubleshooting-table td {
        padding: 1rem 0.5rem;
    }
    
    .why-login-matters {
        padding: 3rem 0;
    }
    
    .why-login-actions {
        justify-content: center;
    }
    
    .cta {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .faq {
        padding: 3rem 0;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .step {
        padding: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .mobile-app-text h2 {
        font-size: 1.75rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .login-actions,
    .mobile-app-actions,
    .why-login-actions {
        flex-direction: column;
        align-items: center;
    }
}
