/* Login page specific styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0D3421 0%, #02432D 100%);
    padding: 4rem 0;
    text-align: center;
    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="25" cy="25" r="1" fill="%23FFEFB0" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23FFEFB0" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23FFEFB0" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23FFEFB0" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23FFEFB0" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFEFB0 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Login Guide Section */
.login-guide {
    padding: 4rem 0;
    background-color: #0D3421;
}

.login-guide h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.login-guide p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.login-steps {
    margin: 3rem 0;
}

.login-steps h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #FFEFB0;
    font-size: 1.8rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #FFEFB0;
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: #FFEFB0;
    color: #055434;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 239, 176, 0.3);
}

.step-content h4 {
    color: #FFEFB0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    margin-top: 1rem;
}

.step-content p {
    color: #e0e0e0;
    margin: 0;
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
}

.step-content a {
    color: #FFEFB0;
    font-weight: 600;
}

.step-content a:hover {
    color: #ffffff;
}

/* Login Info Section */
.login-info {
    margin: 4rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 239, 176, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFEFB0;
    transform: translateY(-3px);
}

.info-item h4 {
    color: #FFEFB0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-item p {
    color: #e0e0e0;
    margin: 0;
    line-height: 1.6;
}

/* Login Benefits */
.login-benefits {
    margin: 4rem 0;
    background: linear-gradient(135deg, #02432D 0%, #0D3421 100%);
    padding: 3rem;
    border-radius: 16px;
}

.login-benefits h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #FFEFB0;
    font-size: 1.8rem;
}

.benefits-list {
    max-width: 600px;
    margin: 0 auto;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list i {
    color: #FFEFB0;
    font-size: 1.2rem;
    width: 20px;
    flex-shrink: 0;
}

/* Comparison Section */
.comparison {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0D3421 0%, #02432D 100%);
}

.comparison h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Trust & Security Section */
.trust-security {
    padding: 4rem 0;
    background-color: #0D3421;
}

.trust-security h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.trust-security p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-indicators {
    margin: 3rem 0;
}

.trust-indicators h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #FFEFB0;
}

/* Reviews Section */
.reviews {
    padding: 4rem 0;
    background: linear-gradient(135deg, #02432D 0%, #0D3421 100%);
}

.reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #FFEFB0;
    transition: all 0.3s ease;
}

.review-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.review-item p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.review-item cite {
    color: #FFEFB0;
    font-weight: 600;
    font-style: normal;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background-color: #0D3421;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
    background-color: #197B59;
    color: #FFEFB0;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item h3:hover {
    background-color: #1a8b5f;
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    color: #e0e0e0;
    line-height: 1.6;
}

.faq-item a {
    color: #FFEFB0;
    font-weight: 600;
}

.faq-item a:hover {
    color: #ffffff;
}

/* Final CTA Section */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #02432D 0%, #0D3421 100%);
    text-align: center;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Login Page */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    

    
    .login-guide,
    .comparison,
    .trust-security,
    .reviews,
    .faq,
    .final-cta {
        padding: 3rem 0;
    }
    
    .login-guide h2,
    .comparison h2,
    .trust-security h2,
    .reviews h2,
    .faq h2 {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-item {
        padding: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-item {
        padding: 1.5rem;
    }
    
    .login-benefits {
        padding: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .faq-item p {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .login-guide h2,
    .comparison h2,
    .trust-security h2,
    .reviews h2,
    .faq h2 {
        font-size: 1.6rem;
    }
    
    .step-item {
        padding: 1.2rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .info-item {
        padding: 1.2rem;
    }
    
    .info-item h4 {
        font-size: 1.1rem;
    }
    
    .login-benefits {
        padding: 1.5rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
    
    .review-item {
        padding: 1.2rem;
    }
    
    .review-item p {
        font-size: 1rem;
    }
}

/* Enhanced hover effects */
.step-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 239, 176, 0.4);
}

.info-item:hover {
    box-shadow: 0 8px 25px rgba(255, 239, 176, 0.1);
}

/* Loading animation for interactive elements */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #055434;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Images */
.login-guide-image,
.login-image,
.reviews-image {
    margin: 2rem 0;
    text-align: center;
}

.login-guide-image img,
.login-image img,
.reviews-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.login-guide-image img:hover,
.login-image img:hover,
.reviews-image img:hover {
    transform: translateY(-5px);
}
