* {
    box-sizing: border-box;
}

:root {
    --primary: #1769e0;
    --primary-dark: #0f56c7;
    --primary-light: #eaf3ff;

    --text: #172033;
    --muted: #718096;
    --border: #e2e8f0;

    --white: #ffffff;
    --background: #f4f7fb;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color: var(--text);

    background: linear-gradient(
    135deg,
    #405DE6 0%,
    #833AB4 30%,
    #E1306C 55%,
    #FD1D1D 75%,
    #FCAF45 100%
);
    overflow-x: hidden;
}


.background-shape {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(2px);
}

.page {
    position: relative;
    z-index: 1;

    width: min(1120px, calc(100% - 32px));

    margin: 40px auto 25px;
}

/* Main card */

.main-card {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;

    background: rgba(255, 255, 255, 0.792);

    border: 1px solid rgba(255, 255, 255, 0.9);

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 25px 70px rgba(35, 55, 85, 0.13);
}

/* Content */

.content {
    padding: 45px 50px;
}

/* Brand */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;




    font-size: 23px;
    font-weight: 800;

}

.brand strong {
    display: block;

    font-size: 17px;
    font-weight: 700;
}

.brand span {
    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 11px;
}

/* Heading */

.heading {
    margin-top: 35px;
}

.eyebrow {
    display: inline-block;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.heading h1 {
    margin: 10px 0 14px;

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.06;

    letter-spacing: -1.8px;
}

.heading h1 span {
    color: var(--primary);
}

.heading p {
    max-width: 650px;

    margin: 0;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.75;
}

/* Security */

.security-box {
    display: flex;

    gap: 13px;

    margin: 25px 0;

    padding: 15px 16px;

    border: 1px solid #d7e6fb;

    border-radius: 15px;

    background: #f5f9ff;
}

.security-icon {
    width: 27px;
    height: 27px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    color: white;

    font-size: 13px;
    font-weight: 800;
}

.security-box strong {
    display: block;

    margin-bottom: 3px;

    font-size: 13px;
}

.security-box p {
    margin: 0;

    color: #68768a;

    font-size: 11px;

    line-height: 1.55;
}

/* Form */

.form {
    margin-top: 5px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.form-group {
    margin-top: 16px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;

    font-weight: 750;
}

.label-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.label-line > span {
    color: #9aa4b2;

    font-size: 11px;
}

/* Inputs */

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;

    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    color: #8995a6;

    font-size: 14px;

    pointer-events: none;
}

input,
textarea {
    width: 100%;

    border: 1px solid var(--border);

    border-radius: 12px;

    outline: none;

    background: #fff;

    color: var(--text);

    font-family: inherit;

    font-size: 14px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

input {
    height: 50px;

    padding: 0 15px 0 43px;
}

textarea {
    min-height: 115px;

    padding: 14px 15px;

    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #a4adba;
}

input:focus,
textarea:focus {
    border-color: #75aaf0;

    box-shadow:
        0 0 0 4px rgba(23, 105, 224, 0.08);
}

/* Counter */

.counter {
    margin-top: 5px;

    text-align: right;

    color: #a0a9b6;

    font-size: 10px;
}

/* Button */

.submit-button {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 19px;

    padding: 15px 18px;

    border: 0;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color: white;

    font-family: inherit;

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 12px 25px rgba(23, 105, 224, 0.22);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.submit-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 30px rgba(23, 105, 224, 0.28);
}

.submit-button:active {
    transform: translateY(0);
}

.button-arrow {
    font-size: 19px;

    line-height: 1;
}

/* Status */

.status-area {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 7px;

    margin-top: 21px;

    font-size: 11px;

    color: #8a95a4;
}

.status-area a {
    color: var(--primary);

    font-weight: 750;

    text-decoration: none;
}

.status-area a:hover {
    text-decoration: underline;
}

/* Side panel */

.side-panel {
    background:
        linear-gradient(
            160deg,
            #f7faff 0%,
            #edf5ff 100%
        );

    border-left: 1px solid var(--border);
}

.side-content {
    height: 100%;

    display: flex;
    flex-direction: column;

    padding: 45px 40px;
}

.side-label {
    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;
}

.side-panel h2 {
    margin: 14px 0 12px;

    font-size: 28px;

    line-height: 1.2;

    letter-spacing: -0.7px;
}

.side-panel h2 span {
    color: var(--primary);
}

.side-description {
    margin: 0;

    color: #718096;

    font-size: 13px;

    line-height: 1.7;
}

/* Steps */

.steps {
    margin-top: 28px;
}

.step {
    display: flex;

    gap: 14px;

    padding: 17px 0;

    border-bottom: 1px solid #dfe7f2;
}

.step:last-child {
    border-bottom: 0;
}

.step-number {
    width: 39px;
    height: 39px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: white;

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    box-shadow:
        0 4px 15px rgba(30, 60, 100, 0.08);
}

.step-text strong {
    display: block;

    margin: 1px 0 4px;

    font-size: 13px;
}

.step-text p {
    margin: 0;

    color: #7b8798;

    font-size: 11px;

    line-height: 1.5;
}

/* Privacy */

.privacy-card {
    display: flex;

    gap: 10px;

    align-items: flex-start;

    margin-top: auto;

    padding: 14px;

    border: 1px solid #dfe7f2;

    border-radius: 13px;

    background: white;
}

.privacy-icon {
    font-size: 16px;
}

.privacy-card strong {
    display: block;

    margin-bottom: 3px;

    font-size: 12px;
}

.privacy-card p {
    margin: 0;

    color: #7b8798;

    font-size: 10px;

    line-height: 1.5;
}

/* Footer */

footer {
    margin-top: 17px;

    text-align: center;

    color: #eeeff1;

    font-size: 10px;
}

/* Tablet */

@media (max-width: 850px) {

    .main-card {
        grid-template-columns: 1fr;
    }

    .side-panel {
        border-left: 0;

        border-top: 1px solid var(--border);
    }

    .side-content {
        padding: 35px 32px;
    }

    .privacy-card {
        margin-top: 25px;
    }
}

/* Mobile */

@media (max-width: 600px) {

    .page {
        width: calc(100% - 20px);

        margin: 12px auto 20px;
    }

    .main-card {
        border-radius: 21px;
    }

    .content {
        padding: 28px 20px;
    }

    .side-content {
        padding: 28px 20px;
    }

    .heading {
        margin-top: 28px;
    }

    .heading h1 {
        font-size: 34px;

        letter-spacing: -1.2px;
    }

    .heading p {
        font-size: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .security-box {
        margin: 21px 0;
    }

    .status-area {
        flex-direction: column;

        gap: 4px;
    }

    .side-panel h2 {
        font-size: 25px;
    }
}

/* Small phones */

@media (max-width: 380px) {

    .content,
    .side-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .heading h1 {
        font-size: 30px;
    }

    .brand-icon {
        width: 44px;
        height: 44px;
    }
}