/* ============================================================
   FYSIOHUB LOGIN
   ============================================================ */

:root {

    --fh-login-purple: #6956E8;
    --fh-login-purple-dark: #5541D7;
    --fh-login-purple-light: #F1EEFF;

    --fh-login-turquoise: #28C7B7;
    --fh-login-turquoise-dark: #19A999;
    --fh-login-turquoise-light: #E8FAF7;

    --fh-login-navy: #102A43;
    --fh-login-muted: #6B7C8F;

    --fh-login-bg: #F7F9FC;
    --fh-login-border: #E7ECF2;

}


/* ============================================================
   BASIS
   ============================================================ */

.fh-login-page,
.fh-login-page * {
    box-sizing: border-box;
}

.fh-login-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-login-navy);

    font-family:
        "Montserrat",
        sans-serif;

}

.fh-login-page a {
    text-decoration: none;
}


.fh-login-container {

    width: calc(100% - 48px);
    max-width: 1120px;

    margin: 0 auto;

    position: relative;
    z-index: 2;

}


/* ============================================================
   SECTION
   ============================================================ */

.fh-login-section {

    min-height: calc(100vh - 94px);

    display: flex;
    align-items: center;

    position: relative;

    padding: 85px 0 100px;

    background:

        radial-gradient(
            circle at 10% 5%,
            rgba(105,86,232,.12),
            transparent 29%
        ),

        radial-gradient(
            circle at 90% 20%,
            rgba(40,199,183,.12),
            transparent 28%
        ),

        linear-gradient(
            180deg,
            #FCFCFF,
            #FFFFFF
        );

}


/* ============================================================
   GRID
   ============================================================ */

.fh-login-grid {

    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    gap: 90px;

    align-items: center;

}


/* ============================================================
   COPY
   ============================================================ */

.fh-login-copy {

    max-width: 500px;

}


.fh-login-eyebrow {

    margin-bottom: 16px;

    color: var(--fh-login-purple);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .11em;

    text-transform: uppercase;

}


.fh-login-copy h1 {

    margin: 0 0 21px;

    color: var(--fh-login-navy);

    font-size: clamp(
        48px,
        5vw,
        67px
    );

    font-weight: 780;

    line-height: 1.03;

    letter-spacing: -.055em;

}


.fh-login-copy h1 span {

    color: var(--fh-login-purple);

}


.fh-login-copy > p {

    margin-bottom: 31px;

    color: var(--fh-login-muted);

    font-size: 16px;

    line-height: 1.75;

}


/* ============================================================
   BENEFITS
   ============================================================ */

.fh-login-benefits {

    display: flex;
    flex-direction: column;

    gap: 13px;

}


.fh-login-benefits > div {

    display: flex;
    align-items: center;

    gap: 11px;

}


.fh-login-benefits span {

    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--fh-login-turquoise-light);

    color:
        var(--fh-login-turquoise-dark);

    font-size: 10px;

    font-weight: 900;

}


.fh-login-benefits p {

    margin: 0;

    color: var(--fh-login-navy);

    font-size: 12px;

    font-weight: 650;

}


/* ============================================================
   CARD
   ============================================================ */

.fh-login-card {

    padding: 38px;

    border:
        1px solid var(--fh-login-border);

    border-radius: 29px;

    background: #fff;

    box-shadow:
        0 24px 70px
        rgba(16,42,67,.10);

}


.fh-login-card-heading {

    margin-bottom: 27px;

}


.fh-login-card-heading h2 {

    margin: 0 0 7px;

    color: var(--fh-login-navy);

    font-size: 29px;

    letter-spacing: -.035em;

}


.fh-login-card-heading p {

    margin: 0;

    color: var(--fh-login-muted);

    font-size: 12px;

    line-height: 1.6;

}


/* ============================================================
   ERROR
   ============================================================ */

.fh-login-error {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    padding: 13px 14px;

    border-radius: 11px;

    background: #FFF1F1;

    color: #A94444;

}


.fh-login-error > span {

    width: 24px;
    height: 24px;

    flex: 0 0 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(169,68,68,.10);

    font-size: 11px;

    font-weight: 900;

}


.fh-login-error p {

    margin: 0;

    font-size: 11px;

}


/* ============================================================
   FORM
   ============================================================ */

.fh-login-form {

    display: flex;

    flex-direction: column;

    gap: 19px;

}


.fh-login-field {

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.fh-login-field label {

    color: var(--fh-login-navy);

    font-size: 12px;

    font-weight: 700;

}


.fh-login-field input {

    width: 100%;

    min-height: 51px;

    padding: 0 14px !important;

    border:
        1px solid var(--fh-login-border) !important;

    border-radius: 12px !important;

    outline: none !important;

    background: #fff !important;

    color:
        var(--fh-login-navy) !important;

    font-family:
        "Montserrat",
        sans-serif !important;

    font-size: 13px !important;

    box-shadow: none !important;

}


.fh-login-field input:focus {

    border-color:
        var(--fh-login-purple) !important;

    box-shadow:
        0 0 0 3px
        rgba(105,86,232,.08) !important;

}


.fh-login-password-label {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

}


.fh-login-password-label a {

    color: var(--fh-login-purple);

    font-size: 10px;

    font-weight: 700;

}


/* ============================================================
   REMEMBER
   ============================================================ */

.fh-login-remember {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--fh-login-muted);

    font-size: 11px;

}


/* ============================================================
   SUBMIT
   ============================================================ */

.fh-login-submit {

    width: 100%;

    min-height: 53px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    border: 0 !important;

    border-radius: 12px !important;

    background:

        linear-gradient(
            135deg,
            var(--fh-login-purple),
            var(--fh-login-purple-dark)
        ) !important;

    color: #fff !important;

    cursor: pointer;

    font-family:
        "Montserrat",
        sans-serif !important;

    font-size: 13px !important;

    font-weight: 750 !important;

    box-shadow:
        0 11px 28px
        rgba(105,86,232,.22);

}


/* ============================================================
   REGISTER
   ============================================================ */

.fh-login-register {

    text-align: center;

    color: var(--fh-login-muted);

    font-size: 11px;

}


.fh-login-register a {

    color: var(--fh-login-purple);

    font-weight: 750;

}


/* ============================================================
   ALREADY
   ============================================================ */

.fh-login-already {

    max-width: 600px;

    margin: 0 auto;

    text-align: center;

}


.fh-login-success-icon {

    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 50%;

    background:
        var(--fh-login-turquoise-light);

    color:
        var(--fh-login-turquoise-dark);

    font-size: 21px;

    font-weight: 900;

}


.fh-login-primary-button {

    min-height: 49px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 18px;

    border-radius: 11px;

    background: var(--fh-login-purple);

    color: #fff;

    font-size: 12px;

    font-weight: 750;

}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 850px) {

    .fh-login-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .fh-login-copy {

        max-width: 650px;

        margin: 0 auto;

        text-align: center;

    }


    .fh-login-benefits {

        max-width: 450px;

        margin: 0 auto;

        text-align: left;

    }


    .fh-login-card {

        max-width: 650px;

        width: 100%;

        margin: 0 auto;

    }

}


@media (max-width: 550px) {

    .fh-login-container {

        width:
            calc(100% - 30px);

    }


    .fh-login-section {

        padding:
            60px 0
            80px;

    }


    .fh-login-card {

        padding: 25px 21px;

    }


    .fh-login-copy h1 {

        font-size: 43px;

    }

}