/* Page Signup/Login Styles */

.info-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
    padding: 4rem 2rem 3rem;
    margin-top: 60px;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.info-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.8rem;
}

.info-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.info-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    padding: 1.3rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: #50c878;
    box-shadow: 0 8px 25px rgba(80, 200, 120, 0.2);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.info-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #50c878;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Section Auth */
.auth-section {
    background: linear-gradient(180deg, #0f0f1e 0%, #1a1a2e 100%);
    padding: 4rem 2rem;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.9);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(74, 144, 226, 0.2);
}

.auth-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.auth-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.auth-tab.active {
    color: #50c878;
    border-bottom-color: #50c878;
}

.auth-tab:hover {
    color: #ffffff;
}

.auth-form-container {
    animation: fadeIn 0.3s ease;
}

.auth-form-container.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
}

.form-group input {
    background: rgba(15, 15, 30, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.9rem 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #50c878;
    box-shadow: 0 0 0 3px rgba(80, 200, 120, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #50c878;
}

.forgot-password {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #5ba0f2;
    text-decoration: underline;
}

.auth-submit-btn {
    background-color: #50c878;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(80, 200, 120, 0.3);
}

.auth-submit-btn:hover {
    background-color: #45b869;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 200, 120, 0.4);
}

.auth-terms {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
}

.auth-terms a {
    color: #4a90e2;
    text-decoration: none;
}

.auth-terms a:hover {
    text-decoration: underline;
}

.auth-switch {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: 1rem;
}

.auth-switch a {
    color: #50c878;
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .info-section {
        padding: 3rem 1.5rem 2.5rem;
    }

    .info-title {
        font-size: 1.8rem;
    }

    .info-subtitle {
        font-size: 1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .auth-section {
        padding: 3rem 1.5rem;
    }

    .auth-container {
        padding: 2rem 1.5rem;
    }

    .auth-title {
        font-size: 1.8rem;
    }
}

