.cl-page {
    background: #f5f4f9;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2.5rem 1rem 3rem;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.cl-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(83,74,183,0.08), 0 1px 3px rgba(0,0,0,0.06);
    padding: 2.5rem 2.5rem 2rem;
    width: 100%;
    max-width: 640px;
    box-sizing: border-box;
}

.cl-header {
    margin-bottom: 2rem;
}

.cl-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7F77DD;
    margin: 0 0 8px;
}

.cl-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1830;
    margin: 0 0 6px;
    line-height: 1.3;
}

.cl-subtitle {
    font-size: 14px;
    color: #6b6a78;
    margin: 0;
    line-height: 1.5;
}

.cl-divider {
    border: none;
    border-top: 1px solid #efefef;
    margin: 1.75rem 0;
}

.cl-step {
    margin-bottom: 1.5rem;
}

.cl-step-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.cl-step-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #EEEDFE;
    color: #534AB7;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cl-step-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1830;
}

.cl-field-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.cl-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 180px;
}

.cl-field-narrow {
    max-width: 200px;
    flex: 0 0 auto;
}

.cl-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b6a78;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cl-field input[type="text"],
.cl-field input[type="text"]:focus {
    width: 100%;
    box-sizing: border-box;
    height: 42px;
    border: 1.5px solid #e0dff5;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1a1830;
    background: #fafafa;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.cl-field input[type="text"]:focus {
    border-color: #7F77DD;
    box-shadow: 0 0 0 3px rgba(127,119,221,0.15);
    background: #fff;
}

.cl-field input[type="text"]::placeholder {
    color: #b0afc0;
}

.cl-hint {
    font-size: 11.5px;
    color: #9998a8;
    line-height: 1.4;
}

.cl-or {
    font-size: 12px;
    font-weight: 600;
    color: #b0afc0;
    padding-top: 24px;
    flex: 0 0 auto;
}

.cl-captcha-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cl-captcha-image {
    background: #f0f0fb;
    border: 1.5px solid #e0dff5;
    border-radius: 8px;
    padding: 10px 18px;
    font-family: 'Courier New', monospace;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #3535cc;
    flex-shrink: 0;
    user-select: none;
}

.cl-error-box {
    background: #fff5f5;
    border: 1px solid #f0c0c0;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 1.5rem;
}

.cl-error-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cl-error-box ul li {
    font-size: 13px;
    color: #c0392b;
    padding: 2px 0;
    padding-left: 18px;
    position: relative;
}

.cl-error-box ul li::before {
    content: "!";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.cl-submit-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cl-btn {
    background: #5c3160;
    color: #fff;
    border: 1px solid #000;
    border-radius: 8px;
    padding: 11px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    letter-spacing: 0.01em;
}

.btn {
    background: #5c3160;
    color: #fff;
    border: 1px solid #000;
    border-radius: 8px;
    padding: 11px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    letter-spacing: 0.01em;
}

.btn-default {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    background-color: #5c3160;
    color: #fff;
    border: 1px solid #000;
    border-radius: 4px;
}

.cl-btn:hover,
.cl-btn:focus {
    background: #e6e6e6;
    color: #333;
    border-color: #adadad;
}

.btn:hover,
.btn:focus,
.btn-default:hover,
.btn-default:focus {
    background: #e6e6e6;
    color: #333;
    border-color: #adadad;
}

.cl-btn:active {
    transform: scale(0.98);
}

.btn:active {
    transform: scale(0.98);
}

.cl-required-note {
    font-size: 12px;
    color: #9998a8;
}

.field-validation-error {
    font-size: 12px;
    color: #c0392b;
    margin-top: 2px;
}

@media (max-width: 520px) {
    .cl-card {
        padding: 1.75rem 1.25rem 1.5rem;
    }

    .cl-title {
        font-size: 20px;
    }

    .cl-field-row {
        flex-direction: column;
    }

    .cl-field,
    .cl-field-narrow {
        min-width: 100%;
        max-width: 100%;
    }

    .cl-or {
        padding-top: 0;
        text-align: center;
    }

    .cl-captcha-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}
