/* Auth Page - Modern Split Layout */
.auth-page-wrapper {
    background: #F8F9FA;
}

.auth-page-inner {
    display: flex;
    min-height: 100vh;
}

/* Left Info Panel */
.auth-info-panel {
    width: 45%;
    background: linear-gradient(135deg, #7052fb 0%, #5a3fd8 50%, #4a2fc9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.auth-info-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.auth-info-content {
    position: relative;
    z-index: 1;
    max-width: 440px;
    width: 100%;
}

.auth-info-logo {
    margin-bottom: 24px;
}

.auth-info-logo img {
    filter: brightness(0) invert(1);
}

.auth-info-hero {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.auth-info-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.auth-info-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.auth-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

.auth-check-item svg {
    flex-shrink: 0;
}

/* Stats Row */
.auth-stats-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.auth-stat {
    text-align: center;
    flex: 1;
}

.auth-stat-number {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.auth-stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* MCP Badge */
.auth-mcp-badge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.auth-mcp-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-mcp-icon i {
    color: #fff;
    font-size: 15px;
}

.auth-mcp-title {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.auth-mcp-desc {
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Brands */
.auth-brands {
    margin-bottom: 20px;
}

.auth-brands-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    font-weight: 600;
}

.auth-brands-logos {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.auth-brands-logos img {
    height: 56px;
    filter: brightness(0) invert(1);
    opacity: 0.75;
    transition: opacity 0.2s;
}

.auth-brands-logos img:hover {
    opacity: 1;
}

/* Right Form Panel */
.auth-form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow-y: auto;
    background: #F8F9FA;
}

.auth-form-container {
    width: 100%;
    max-width: 460px;
}

/* Mobile-only logo: hidden on desktop, shown at top on mobile (left-aligned like reference) */
.auth-mobile-logo {
    display: none;
}

.auth-mobile-logo a {
    display: inline-block;
}

.auth-mobile-logo img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

.auth-form-header {
    margin-bottom: 28px;
}

.auth-form-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.auth-form-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* Social Buttons */
.auth-social-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.auth-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: #374151;
    font-size: 0.85rem;
    font-weight: 500;
}

.auth-social-btn:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    text-decoration: none;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #94a3b8;
    font-size: 0.8rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.auth-divider span {
    padding: 0 14px;
    white-space: nowrap;
}

/* Form Fields */
.auth-field {
    margin-bottom: 16px;
}

.auth-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}

.auth-field input[type="text"],
.auth-field input[type="email"],
.auth-field input[type="password"] {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-field input:focus {
    border-color: #7052fb;
    box-shadow: 0 0 0 3px rgba(112, 82, 251, 0.1);
    outline: none;
}

/* Submit Button */
.auth-submit-section {
    margin-top: 20px;
}

.auth-submit-btn {
    width: 100%;
    padding: 13px;
    background: #7052fb !important;
    color: #fff !important;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.auth-submit-btn:hover {
    background: #5a3fd8 !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(112, 82, 251, 0.3);
}

.auth-switch-link {
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
    color: #374151;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.auth-switch-link a {
    color: #1a1a2e;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
}

.auth-switch-link a:hover {
    color: #374151;
    text-decoration: underline;
}

/* Captcha responsive */
.captchaContainer {
    transform-origin: 0 0;
}

/* Legacy classes kept for testimonials/FAQ sections below the form */
.loginButton {
    padding: 13px 1rem;
    border: 1px solid black;
    border-radius: 5px;
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    cursor: pointer;
}

.loginButton div {
    color: black;
    margin-left: 1rem;
}

.normalLoginButton {
    padding: 13px 29px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.normalLoginButton:hover {
    border: 1px solid #7052fb !important;
    background-color: #7052fb !important;
    color: white !important;
    transition: all 0.2s ease-in-out;
}

.brandsContainer {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.paragraph {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.paragraph__text {
    font-weight: bold;
    font-size: 1.2rem;
}

.circleContainer {
    width: 160px;
    height: 160px;
    border-radius: 100%;
    border: none;
    object-fit: cover;
}

.devCard {
    display: flex;
    flex-direction: column;
    width: 300px;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.withImage {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.testimonialsContainer {
    display: flex;
    gap: 4rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 1rem;
    background-color: #f8f7ff;
    flex: 1;
    width: 100%;
}

.cardTitle {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.descContainer {
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
}

.cardsContainer {
    display: flex;
    gap: 6rem;
    justify-content: center;
    padding: 0 1rem;
    flex-wrap: wrap;
}

.cardSubtitle {
    font-size: 16px;
    margin: 0;
}

.alreadyRegistered {
    font-size: 14px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    gap: 0.3rem;
}

.alreadyRegistered a {
    text-decoration: underline !important;
    color: black;
}

/* Faqs */
.faq {
    padding: 80px 0 60px;
    background: #f8f9fa;
    min-height: auto;
}

.faq .section-title {
    margin-bottom: 54px;
}

.faq .section-title h1 {
    margin-bottom: 22px;
}

.faq .accordion .card {
    border: none;
    margin-bottom: 30px;
    width: 650px;
}

.faq .accordion .card:not(:first-of-type) .card-header:first-child {
    border-radius: 10px;
}

.faq .accordion .card .card-header {
    border: none;
    border-radius: 10px;
    padding: 0;
}

.faq .accordion .card .card-header h5 {
    padding: 0;
}

.faq .accordion .card .card-header h5 button {
    color: #1e3056;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 0 30px 0 70px;
    height: 80px;
    display: block;
    width: 100%;
    color: rgba(30, 48, 86, 0.8);
    text-align: left;
    background: #fff;
    box-shadow: 0px -50px 140px 0px rgba(69, 81, 100, 0.1);
    border-radius: 10px 10px 0 0;
    position: relative;
}

.faq .accordion .card .card-header h5 button:after {
    position: absolute;
    left: 30px;
    top: 50%;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    background-color: transparent;
    color: black;
    text-align: center;
    border: 1px solid black;
    border-radius: 50%;
    line-height: 100%;
    content: "\f067";
    font-size: 10px;
    line-height: 18px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.faq .accordion .card .card-header h5 button.collapsed {
    background: #fff;
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid rgba(97, 125, 255, 0.2);
}

.faq .accordion .card .card-header h5 button[aria-expanded="true"]:after {
    content: "\f068";
    color: #fff;
    background-image: linear-gradient(-180deg, black 0%, black 100%);
}

.faq .accordion .card .card-body {
    box-shadow: 0px 15px 140px 0px rgba(69, 81, 100, 0.1);
    border-radius: 0 0 10px 10px;
    padding-top: 0;
    margin-top: -6px;
    padding-left: 72px;
    padding-right: 70px;
    padding-bottom: 23px;
    color: rgba(30, 48, 86, 0.8);
    line-height: 30px;
}

.faqsContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.collapseButton {
    white-space: normal !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    height: 100% !important;
}

/* Features Section (modernized) */
.reg-features-section {
    padding: 64px 24px;
    background: #fff;
}

.reg-features-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.reg-features-heading {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.reg-features-subheading {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 40px;
}

.reg-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.reg-feature-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 22px;
    text-align: left;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.reg-feature-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.reg-feature-card--highlight {
    background: #7052fb;
    border-color: #7052fb;
}

.reg-feature-card--highlight:hover {
    border-color: #5a3fd8;
    box-shadow: 0 4px 16px rgba(112, 82, 251, 0.25);
}

.reg-feature-card--highlight .reg-feature-icon {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

.reg-feature-card--highlight .reg-feature-title {
    color: #fff;
}

.reg-feature-card--highlight .reg-feature-desc {
    color: rgba(255,255,255,0.7);
}

.reg-feature-icon {
    width: 44px;
    height: 44px;
    background: #e5e7eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    margin-bottom: 16px;
}

.reg-feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.reg-feature-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .reg-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .reg-features-grid {
        grid-template-columns: 1fr;
    }

    .reg-features-heading {
        font-size: 1.4rem;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .auth-page-inner {
        flex-direction: column;
    }

    .auth-mobile-logo {
        display: block;
        padding-bottom: 20px;
        margin-bottom: 4px;
    }

    .auth-info-panel {
        display: none;
    }

    .auth-info-hero {
        display: none;
    }

    .auth-info-content {
        max-width: 100%;
    }

    .auth-form-panel {
        padding: 30px 24px;
    }

    .auth-form-container {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .auth-social-buttons {
        flex-direction: column;
    }

    .auth-stats-row {
        gap: 12px;
    }

    .auth-info-panel {
        padding: 24px 16px;
    }

    .auth-form-panel {
        padding: 24px 16px;
    }

    .captchaContainer {
        transform: scale(0.85);
        width: 100%;
        display: inline-block;
    }

    .faq .accordion .card {
        width: 100%;
    }

    .faq .accordion .card .card-header h5 button:after {
        left: 15px;
    }

    .faq .accordion .card .card-header h5 button {
        padding: 0 5px 0 55px;
    }
}

/* Dev section cards */
.containerImg {
    height: auto;
}

.bar_img {
    background-image: url("img/bar_img3.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    height: auto;
    padding: 0px;
    margin-top: 5%;
}

@media screen and (max-width: 414px) {
    .cards {
        margin-bottom: 5%;
    }
    .card_center {
        width: 85% !important;
    }
    .bar_img {
        background-image: url("img/bar_img2.svg");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        position: relative;
        height: auto;
        padding: 0px;
        margin-top: 0%;
    }
}

@media (max-width: 690px) {
    .faq .accordion .card {
        width: 340px;
    }
}
