/* ============================================
   CData Connect AI - Signup Page (Dark Hero)
   Dark gradient override for ai/signup
   Base styles in connect-cloud-signup.css
   ============================================ */

/* --- Dark gradient background --- */
.wrapper {
    min-height: 80vh;
    grid-template-columns: 1fr minmax(0, 640px) minmax(0, 560px) 1fr;
    grid-template-areas:
        ". leftCol rightCol ."
        "lowerSpan lowerSpan lowerSpan lowerSpan";
    background: linear-gradient(145deg, var(--brand-depth, #15151C) 0%, var(--brand-resolve, #002660) 44%, #0B59CE 120%);
}

/* --- Left Column: white text on dark bg --- */
.leftCol {
    background: transparent;
}
.leftCol h1 {
    font-size: var(--display-s, 30px);
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: 20px;
}
.leftCol h3 {
    font-size: var(--body-l, 16px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin-bottom: 36px;
}

/* --- Feature list white text --- */
.featureList {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.listIcon {
    width: 48px;
}
.listIcon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.featureItem {
    font-size: var(--body-m, 14px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}
.featureItem strong {
    color: var(--brand-agility, #FFE500);
    font-weight: 600;
}

/* --- Right Column --- */
.rightCol {
    background: transparent;
    padding: 56px 24px 56px 24px;
}
.rightCol h3 {
    font-size: var(--body-l, 18px);
    line-height: 1.4;
    color: var(--text-fill-1, #15151C);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--brand-agility, #FFE500);
    display: flex;
    align-items: center;
}
.rightCol h3 .form-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--brand-resolve, #002660);
    color: #fff;
    font-size: 12px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* --- Form Card (white floating card) --- */
form.cloudSignup {
    background: #fff;
    border-radius: 12px;
    padding: 28px 28px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
}
form.cloudSignup .form-control {
    padding: 10px 14px;
    font-size: var(--body-m, 14px);
    color: var(--text-fill-1, #15151C);
    border: 1px solid var(--surface-fill-3, #D9D6D2);
    border-radius: 6px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
form.cloudSignup .form-control:focus {
    border-color: var(--brand-resolve, #002660);
    box-shadow: 0 0 0 3px rgba(0, 38, 96, 0.08);
    outline: none;
}
form.cloudSignup .form-control::placeholder {
    font-weight: 400;
    font-size: var(--body-m, 14px);
    color: var(--text-fill-4, #A8A6A5);
}

/* --- Submit Button --- */
form.cloudSignup .btn.arrow {
    width: 100%;
    padding: 14px 24px;
    font-size: var(--body-m, 16px);
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
form.cloudSignup .btn.arrow:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* --- Logo Grid Footer --- */
.lowerSpan {
    padding: 48px 56px;
    background-color: var(--surface-fill-2, #F1EEE9);
}
.lowerSpan h5 {
    font-size: var(--label-l, 14px);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-fill-3, #777577);
    margin-bottom: 24px;
    font-weight: 600;
}
.logoGrid div img {
    opacity: 0.5;
    transition: opacity 0.2s ease;
}
.logoGrid div img:hover {
    opacity: 0.8;
}

/* --- Responsive: Tablet --- */
@media (max-width: 991px) {
    .wrapper {
        min-height: auto;
    }
    .col {
        padding: 40px 48px;
    }
    .rightCol {
        padding: 0 48px 48px;
    }
}

/* --- Responsive: Mobile --- */
@media (max-width: 767px) {
    .col {
        padding: 32px 24px;
    }
    .rightCol {
        padding: 0 24px 32px;
    }
    .leftCol h1 {
        font-size: var(--display-s, 28px);
    }
    .lowerSpan {
        padding: 32px 24px;
    }
    .listIcon {
        width: 40px;
    }
    .listIcon img {
        width: 40px;
        height: 40px;
    }
}
