/* ============================================================
   FYSIOHUB PATIENT REGISTRATION
   ============================================================ */

:root {

    --fh-patient-purple: #6956E8;
    --fh-patient-purple-dark: #5541D7;
    --fh-patient-purple-light: #F1EEFF;

    --fh-patient-turquoise: #28C7B7;
    --fh-patient-turquoise-dark: #19A999;
    --fh-patient-turquoise-light: #E8FAF7;

    --fh-patient-navy: #102A43;
    --fh-patient-muted: #6B7C8F;

    --fh-patient-bg: #F7F9FC;

    --fh-patient-white: #FFFFFF;

    --fh-patient-border: #E7ECF2;

    --fh-patient-container: 1240px;

}


/* ============================================================
   RESET
   ============================================================ */

.fh-patient-page,
.fh-patient-page * {
    box-sizing: border-box;
}

.fh-patient-page {

    width: 100vw;
    max-width: 100vw;

    position: relative;

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    overflow: hidden;

    background: #fff;

    color: var(--fh-patient-navy);

    font-family: "Montserrat", sans-serif;

}

.fh-patient-page a {
    text-decoration: none;
}

.fh-patient-page h1,
.fh-patient-page h2,
.fh-patient-page h3,
.fh-patient-page p {
    margin-top: 0;
}

.fh-patient-container {

    width: calc(100% - 48px);

    max-width: var(--fh-patient-container);

    margin: 0 auto;

    position: relative;

    z-index: 2;

}


/* ============================================================
   REGISTRATIE ACHTERGROND
   ============================================================ */

.fh-patient-register-section {

    min-height: 760px;

    position: relative;

    padding: 90px 0 110px;

    background:

        radial-gradient(
            circle at 10% 5%,
            rgba(105, 86, 232, 0.12),
            transparent 29%
        ),

        radial-gradient(
            circle at 91% 22%,
            rgba(40, 199, 183, 0.12),
            transparent 27%
        ),

        linear-gradient(
            180deg,
            #FCFCFF 0%,
            #FFFFFF 100%
        );

}


/* ============================================================
   GRID
   ============================================================ */

.fh-patient-register-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(0, 1.12fr);

    gap: 95px;

    align-items: center;

}


/* ============================================================
   LINKERKANT
   ============================================================ */

.fh-patient-register-copy {

    max-width: 540px;

}

.fh-patient-eyebrow {

    display: inline-flex;

    margin-bottom: 19px;

    color: var(--fh-patient-purple);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.11em;

    text-transform: uppercase;

}

.fh-patient-register-copy h1 {

    margin-bottom: 24px;

    color: var(--fh-patient-navy);

    font-size: clamp(
        46px,
        5vw,
        67px
    );

    font-weight: 780;

    line-height: 1.03;

    letter-spacing: -0.055em;

}

.fh-patient-register-copy h1 span {

    display: block;

    color: var(--fh-patient-purple);

}

.fh-patient-register-intro {

    margin-bottom: 37px;

    color: var(--fh-patient-muted);

    font-size: 17px;

    line-height: 1.75;

}


/* ============================================================
   BENEFITS
   ============================================================ */

.fh-patient-benefits {

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.fh-patient-benefit {

    display: flex;

    align-items: flex-start;

    gap: 15px;

}

.fh-patient-benefit-check {

    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 1px;

    border-radius: 50%;

    background:
        var(--fh-patient-turquoise-light);

    color:
        var(--fh-patient-turquoise-dark);

    font-size: 12px;

    font-weight: 900;

}

.fh-patient-benefit strong {

    display: block;

    margin-bottom: 4px;

    color: var(--fh-patient-navy);

    font-size: 14px;

    font-weight: 750;

}

.fh-patient-benefit p {

    margin: 0;

    color: var(--fh-patient-muted);

    font-size: 13px;

    line-height: 1.55;

}


/* ============================================================
   FORM CARD
   ============================================================ */

.fh-patient-form-card {

    padding: 38px;

    border:
        1px solid var(--fh-patient-border);

    border-radius: 30px;

    background: #FFFFFF;

    box-shadow:
        0 24px 70px
        rgba(16, 42, 67, 0.10);

}

.fh-patient-form-heading {

    margin-bottom: 27px;

}

.fh-patient-form-heading h2 {

    margin-bottom: 8px;

    color: var(--fh-patient-navy);

    font-size: 29px;

    font-weight: 780;

    letter-spacing: -0.035em;

}

.fh-patient-form-heading p {

    margin: 0;

    color: var(--fh-patient-muted);

    font-size: 14px;

}


/* ============================================================
   ERROR
   ============================================================ */

.fh-patient-error {

    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 20px;

    padding: 13px 15px;

    border-radius: 12px;

    background: #FFF1F1;

    color: #AA3E3E;

}

.fh-patient-error > span {

    width: 25px;
    height: 25px;

    flex: 0 0 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(170, 62, 62, 0.10);

    font-size: 12px;

    font-weight: 900;

}

.fh-patient-error p {

    margin: 0;

    font-size: 12px;

    font-weight: 600;

}


/* ============================================================
   FORM
   ============================================================ */

.fh-patient-form {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.fh-patient-form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

}

.fh-patient-field {

    display: flex;

    flex-direction: column;

    gap: 8px;

}

.fh-patient-field label {

    color: var(--fh-patient-navy);

    font-size: 12px;

    font-weight: 700;

}

.fh-patient-field input {

    width: 100%;

    min-height: 50px;

    margin: 0 !important;

    padding: 0 14px !important;

    border:
        1px solid var(--fh-patient-border)
        !important;

    border-radius: 12px !important;

    outline: none !important;

    background: #fff !important;

    color:
        var(--fh-patient-navy)
        !important;

    font-family:
        "Montserrat",
        sans-serif
        !important;

    font-size: 13px !important;

    box-shadow: none !important;

    transition:

        border-color 0.2s ease,

        box-shadow 0.2s ease !important;

}

.fh-patient-field input:focus {

    border-color:
        var(--fh-patient-purple)
        !important;

    box-shadow:
        0 0 0 3px
        rgba(105, 86, 232, 0.08)
        !important;

}

.fh-patient-field input::placeholder {

    color: #A0ACB8;

}


/* ============================================================
   CHECKBOX
   ============================================================ */

.fh-patient-checkbox {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    cursor: pointer;

}

.fh-patient-checkbox input {

    position: absolute;

    opacity: 0;

    pointer-events: none;

}

.fh-patient-checkbox-box {

    width: 19px;
    height: 19px;

    flex: 0 0 19px;

    position: relative;

    margin-top: 1px;

    border:
        1px solid #CBD4DE;

    border-radius: 5px;

    background: #fff;

}

.fh-patient-checkbox input:checked
+ .fh-patient-checkbox-box {

    border-color:
        var(--fh-patient-purple);

    background:
        var(--fh-patient-purple);

}

.fh-patient-checkbox input:checked
+ .fh-patient-checkbox-box::after {

    content: "✓";

    position: absolute;

    left: 50%;
    top: 50%;

    color: #fff;

    font-size: 11px;

    font-weight: 900;

    transform:
        translate(-50%, -53%);

}

.fh-patient-checkbox-text {

    color: var(--fh-patient-muted);

    font-size: 11px;

    line-height: 1.6;

}

.fh-patient-checkbox-text a {

    color: var(--fh-patient-purple);

    font-weight: 700;

}


/* ============================================================
   SUBMIT
   ============================================================ */

.fh-patient-submit {

    width: 100%;

    min-height: 54px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    margin: 3px 0 0 !important;

    padding: 0 20px !important;

    border: 0 !important;

    border-radius: 13px !important;

    background:

        linear-gradient(
            135deg,
            var(--fh-patient-purple),
            var(--fh-patient-purple-dark)
        ) !important;

    color: #FFFFFF !important;

    cursor: pointer;

    font-family:
        "Montserrat",
        sans-serif
        !important;

    font-size: 14px !important;

    font-weight: 750 !important;

    box-shadow:

        0 12px 30px
        rgba(105, 86, 232, 0.23);

    transition:

        transform 0.2s ease,

        box-shadow 0.2s ease
        !important;

}

.fh-patient-submit:hover {

    transform:
        translateY(-2px);

    box-shadow:

        0 16px 35px
        rgba(105, 86, 232, 0.30);

}


/* ============================================================
   LOGIN LINK
   ============================================================ */

.fh-patient-login-link {

    padding-top: 2px;

    text-align: center;

    color: var(--fh-patient-muted);

    font-size: 12px;

}

.fh-patient-login-link a {

    color: var(--fh-patient-purple);

    font-weight: 750;

}


/* ============================================================
   WELKOM
   ============================================================ */

.fh-patient-welcome-section {

    min-height: calc(100vh - 94px);

    display: flex;

    align-items: center;

    position: relative;

    padding: 90px 0;

    background:

        radial-gradient(
            circle at 15% 10%,
            rgba(105, 86, 232, 0.11),
            transparent 29%
        ),

        radial-gradient(
            circle at 90% 18%,
            rgba(40, 199, 183, 0.12),
            transparent 26%
        ),

        linear-gradient(
            180deg,
            #FCFCFF,
            #FFFFFF
        );

}

.fh-patient-welcome-card {

    max-width: 950px;

    margin: 0 auto;

    padding: 62px;

    border:
        1px solid var(--fh-patient-border);

    border-radius: 36px;

    background: rgba(
        255,
        255,
        255,
        0.94
    );

    text-align: center;

    box-shadow:
        0 25px 80px
        rgba(16, 42, 67, 0.10);

}

.fh-patient-welcome-check {

    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 22px;

    border-radius: 50%;

    background:
        var(--fh-patient-turquoise-light);

    color:
        var(--fh-patient-turquoise-dark);

    font-size: 27px;

    font-weight: 900;

}

.fh-patient-welcome-card h1 {

    max-width: 780px;

    margin:
        0 auto
        22px;

    color: var(--fh-patient-navy);

    font-size: clamp(
        42px,
        5vw,
        65px
    );

    font-weight: 780;

    line-height: 1.05;

    letter-spacing: -0.05em;

}

.fh-patient-welcome-card h1 span {

    color:
        var(--fh-patient-purple);

}

.fh-patient-welcome-intro {

    max-width: 660px;

    margin:
        0 auto
        30px;

    color:
        var(--fh-patient-muted);

    font-size: 16px;

    line-height: 1.75;

}

.fh-patient-welcome-actions {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 48px;

}


/* ============================================================
   BUTTONS
   ============================================================ */

.fh-patient-primary-button,
.fh-patient-secondary-button {

    min-height: 51px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 19px;

    border-radius: 12px;

    font-size: 13px;

    font-weight: 750;

}

.fh-patient-primary-button {

    background:

        linear-gradient(
            135deg,
            var(--fh-patient-purple),
            var(--fh-patient-purple-dark)
        );

    color: #fff;

    box-shadow:
        0 12px 28px
        rgba(105, 86, 232, 0.22);

}

.fh-patient-secondary-button {

    border:
        1px solid var(--fh-patient-border);

    background: #fff;

    color:
        var(--fh-patient-navy);

}


/* ============================================================
   WELKOM FEATURES
   ============================================================ */

.fh-patient-welcome-features {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;

    padding-top: 35px;

    border-top:
        1px solid var(--fh-patient-border);

}

.fh-patient-welcome-features > div {

    padding: 18px;

    text-align: left;

}

.fh-patient-welcome-features span {

    display: block;

    margin-bottom: 9px;

    color:
        var(--fh-patient-purple);

    font-size: 11px;

    font-weight: 850;

    letter-spacing: 0.07em;

}

.fh-patient-welcome-features strong {

    display: block;

    margin-bottom: 7px;

    color:
        var(--fh-patient-navy);

    font-size: 15px;

}

.fh-patient-welcome-features p {

    margin: 0;

    color:
        var(--fh-patient-muted);

    font-size: 12px;

    line-height: 1.6;

}


/* ============================================================
   AL INGelogd
   ============================================================ */

.fh-patient-already {

    min-height: 600px;

    display: flex;

    align-items: center;

    padding: 80px 0;

    background:
        var(--fh-patient-bg);

}

.fh-patient-already-card {

    max-width: 650px;

    margin: 0 auto;

    padding: 55px;

    border-radius: 30px;

    background: #fff;

    text-align: center;

    box-shadow:
        0 20px 60px
        rgba(16, 42, 67, 0.08);

}

.fh-patient-check {

    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background:
        var(--fh-patient-turquoise-light);

    color:
        var(--fh-patient-turquoise-dark);

    font-weight: 900;

}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1000px) {

    .fh-patient-register-grid {

        grid-template-columns: 1fr;

        gap: 55px;

    }

    .fh-patient-register-copy {

        max-width: 700px;

        text-align: center;

        margin: 0 auto;

    }

    .fh-patient-benefits {

        max-width: 500px;

        margin: 0 auto;

        text-align: left;

    }

    .fh-patient-form-card {

        max-width: 720px;

        width: 100%;

        margin: 0 auto;

    }

}


@media (max-width: 700px) {

    .fh-patient-container {

        width: calc(100% - 30px);

    }

    .fh-patient-register-section {

        padding: 65px 0 80px;

    }

    .fh-patient-form-card {

        padding: 26px 22px;

        border-radius: 23px;

    }

    .fh-patient-form-row {

        grid-template-columns: 1fr;

    }

    .fh-patient-welcome-card {

        padding: 42px 24px;

        border-radius: 27px;

    }

    .fh-patient-welcome-features {

        grid-template-columns: 1fr;

    }

    .fh-patient-welcome-features > div {

        text-align: center;

    }

}


@media (max-width: 500px) {

    .fh-patient-register-copy h1 {

        font-size: 43px;

    }

    .fh-patient-welcome-card h1 {

        font-size: 40px;

    }

    .fh-patient-welcome-actions {

        flex-direction: column;

    }

    .fh-patient-primary-button,
    .fh-patient-secondary-button {

        width: 100%;

    }

}