/* Login Page Styles - Uses homepage hero-banner styles from home.css */

/* Section Styles */
.login-section {
    padding: 30px 0;
    background: var(--bg-card);
    margin-bottom: 0;
}

.login-section:nth-child(even) {
    background: var(--bg-dark);
}

.login-section:last-child {
    padding-bottom: 40px;
    margin-bottom: 0;
}

/* Benefits Grid */
.login-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    position: relative;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 230, 118, 0.2);
    border-color: var(--primary-green);
}

.benefit-number {
    position: absolute;
    top: -15px;
    left: 25px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-yellow));
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.benefit-card h3 {
    color: var(--text-white);
    margin-bottom: 8px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 12px;
    line-height: 1.5;
}

/* Steps */
.login-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--primary-green);
    transform: translateX(5px);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-yellow));
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-white);
    margin-bottom: 5px;
    font-size: 15px;
}

.step-content p {
    color: var(--text-gray);
    font-size: 13px;
    margin: 0;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.benefits-list li {
    background: var(--bg-card);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #333;
    color: var(--text-gray);
    position: relative;
    padding-left: 40px;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    border-color: var(--primary-green);
    transform: translateX(5px);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 18px;
}

/* Recovery Steps */
.recovery-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.recovery-step {
    text-align: center;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.recovery-step:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.step-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-yellow));
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
    font-size: 18px;
}

.recovery-step p {
    color: var(--text-gray);
    font-size: 13px;
    margin: 0;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.payment-method img {
    margin-bottom: 10px;
    width: 48px;
    height: 48px;
}

.payment-method span {
    color: var(--text-white);
    font-weight: 500;
    font-size: 13px;
}

.payment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.info-item {
    background: var(--bg-card);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #333;
    color: var(--text-gray);
    text-align: center;
}

.info-item strong {
    color: var(--primary-green);
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.tip-item:hover {
    border-color: var(--primary-green);
    transform: translateX(5px);
}

.tip-item img {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.tip-item p {
    color: var(--text-gray);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.tip-item strong {
    color: var(--primary-green);
}

/* Troubleshooting */
.troubleshooting-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.trouble-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.trouble-item:hover {
    border-color: var(--primary-green);
    transform: translateX(5px);
}

.trouble-item img {
    width: 24px;
    height: 24px;
}

.trouble-item p {
    color: var(--text-gray);
    font-size: 13px;
    margin: 0;
}

/* Choice Features */
.choice-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.choice-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.choice-item:hover {
    border-color: var(--primary-green);
    transform: translateX(5px);
}

.choice-item img {
    width: 32px;
    height: 32px;
}

.choice-item span {
    color: var(--text-gray);
    font-size: 13px;
}

/* Notes */
.password-recovery,
.app-note,
.recovery-note,
.payment-note,
.support-note,
.choice-conclusion,
.reward-note,
.conclusion-note,
.join-note {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
    text-align: center;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 20px;
}

.password-recovery strong {
    color: var(--primary-green);
}

/* Showcase Images */
.login-showcase,
.banking-showcase,
.choice-showcase {
    margin-bottom: 30px;
    text-align: center;
}

.login-showcase img,
.banking-showcase img,
.choice-showcase img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Join Buttons */
.join-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.join-buttons .btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Mobile Responsive - Hero banner responsive styles are in home.css */
@media (max-width: 768px) {
    .login-benefits-grid,
    .login-steps,
    .recovery-steps,
    .payment-methods,
    .tips-grid,
    .troubleshooting-list,
    .choice-features {
        grid-template-columns: 1fr;
    }
    
    .payment-info {
        grid-template-columns: 1fr;
    }
    
    .join-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .join-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}


/* Use project's section-title and section-sub styles */
.login-section .section-title {
    font-size: 13px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8ab310;
    font-weight: 800;
}

.login-section .section-title span {
    color: var(--primary-green);
    font-weight: 900;
    font-size: 16px;
}

.login-section .section-sub {
    font-size: 12px;
    color: #666;
    margin-bottom: 18px;
    font-style: italic;
}
