@charset "UTF-8";

/* ===== Contact page add ===== */
.ctc {
    --ctc-blue: #ababab;
    --ctc-blue2: #d3d3d3;
    --ctc-ink: #474747;
    --ctc-muted: #6f6f6f;
    --ctc-bg: #ededf1;
    --ctc-card: #ffffff;
    --ctc-line: #f2f2f2;
    --ctc-shadow: 0 10px 30px rgba(67, 67, 67, .10);
    --ctc-radius: 18px;
}

.ctc .ctc-lead {
    padding: 16px 18px;
    margin: 0 auto 18px;
    text-align: center;
}

.ctc .ctc-lead p {
    margin: 0;
    color: #474747;
    line-height: 1.9;
    font-weight: 800;
}

.ctc .ctc-alert {
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 900;
    margin: 0 0 14px;
    line-height: 1.7;
}

.ctc .ctc-alert--ok {
    background: var(--ctc-bg);
    border: 1px solid var(--ctc-line);
    color: var(--ctc-blue);
}

.ctc .ctc-alert--error {
    background: rgba(220, 38, 38, .08);
    border: 1px solid rgba(220, 38, 38, .22);
    color: #b91c1c;
}

.ctc .ctc-form {
    padding: 2rem 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.ctc .ctc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.3rem;
}

.ctc .ctc-field {
    min-width: 0;
}

.ctc .ctc-field--wide {
    grid-column: 1 / -1;
}

.ctc .ctc-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 1000;
    color: var(--ctc-ink);
    margin: 0 0 8px;
    line-height: 1.3;
}

.ctc .ctc-req {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 1000;
    background: var(--ctc-blue);
    color: #fff;
}

.ctc .ctc-input {
    width: 100%;
    background: #fff;
    border: 1px solid #dfe8fb;
    border-radius: 14px;
    padding: 12px 12px;
    font-weight: 800;
    color: #474747;
    outline: none;
    box-shadow: 0 8px 20px rgba(15, 33, 73, .06);
}


.ctc .ctc-textarea {
    resize: vertical;
    min-height: 160px;
}

.ctc .ctc-input:focus {
    border-color: rgba(173, 173, 173, 0.55);
    box-shadow: 0 0 0 4px rgba(169, 169, 169, 0.12), 0 8px 20px rgba(15, 33, 73, .06);
}

.ctc .ctc-input.is-error {
    border-color: rgba(220, 38, 38, .55);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .10), 0 8px 20px rgba(15, 33, 73, .06);
}

.ctc .ctc-err {
    margin: 8px 0 0;
    color: #b91c1c;
    font-weight: 900;
    font-size: 13px;
    line-height: 1.5;
}

.ctc .ctc-actions {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    flex-direction: column;
}

.ctc .ctc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    border-radius: 999px;
    padding: 1.5rem 3rem;
    font-weight: 1000;
    color: #fff;
    background: var(--ctc-blue);
    box-shadow: var(--ctc-shadow);
}

.ctc .ctc-btn:hover {
    filter: brightness(1.03);
}

.ctc .ctc-btn:active {
    transform: translateY(1px);
}

.ctc .ctc-note {
    margin: 0;
    color: var(--ctc-muted);
    font-weight: 800;
    line-height: 1.6;
    font-size: 13px;
}

.ctc .ctc-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

/* Responsive */
@media (max-width: 860px) {
    .ctc .ctc-form {
        padding: 1rem;
    }
    .ctc .ctc-lead p{
        text-align: start;
    }
    .ctc .ctc-grid {
        grid-template-columns: 1fr;
    }

    .ctc .ctc-actions {
        justify-content: center;
    }

    .ctc .ctc-note {
        text-align: center;
        width: 100%;
    }
}