:root {
    --primaryfiber-blue: #4294f7;
    --neutrallightest-gray: #f6f6fa;
    --text-color: #101014;
    --gray: #515156;
    --spacing-xxl: 40px;
    --padding-xl: 32px;
    --border-radius: 16px;
    --input-padding: 12px;
    --font-size-m: 16px;
    --font-size-s: 14px;
    --input-height: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/*body {
    font-family: "GilroyW05-Regular";
    background-color: #f0f0f0;*/
    /* display: flex;
    flex-direction: column;
    justify-content: flex-start;*/
    /*align-items: center;
}*/

.header-bg {
    width: 100%;
    height: 378px;
    background-image: url('../images/login-headerbg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*.logo {
    width: 234px;
    height: 80px;
    margin-bottom: 5%;
}*/

.logo-large {
    width: 234px;
    height: 80px;
    margin-bottom: 12%;
}

.container-residence {
    max-width: 864px;
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: var(--padding-xl);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-top: -200px;
    margin-bottom: 20px;
    /*  overflow: hidden;*/
}

.card-createprofile {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: var(--padding-xl);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-top: -200px;
    margin-bottom: 20px;
    height: 478px;
    max-width: 450px;
    /*overflow: hidden;*/
}

.paragraph-email {
    margin-top: 2%;
}

.card-checkemail {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: var(--padding-xl);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-top: -170px;
    margin-bottom: 20px;
    max-width: 450px;
    height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*overflow: hidden;*/
}

.bottom-container-2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 7%;
}


.input-group {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

    .input-group input {
        width: 50px;
        height: 50px;
        font-size: 18px;
        text-align: center;
        border: 2px solid var(--neutralvelvet-black-20);
        border-radius: 7px;
        margin-right: 10px;
        font-size: 24px;
    }

        .input-group input:last-child {
            margin-right: 0;
        }

.send-again {
    text-align: center;
}

.card-checkemail p {
    font-size: var(--font-size-m);
    font-weight: 400;
    color: var(--neutralcharcoal-gray);
    margin-bottom: 18px;
    text-align: left;
    line-height: 22px;
    width: 330px;
}

.bottom-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 6%;
}

.profile-title {
    font-family: 'Gilroy-Black', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 48px;
    text-align: left;
    position: relative;
    width: 370px;
    text-align: left;
    /*margin-top: 10%;*/
}

.form-title {
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 40px;
    font-family: 'GilroySemiBold';
}

.progress-bar {
    display: flex;
    justify-content: center;
    margin: 5% 0;
}

    .progress-bar .step {
        width: 28%;
        height: 5px;
        background-color: #d3d3d3;
        margin: 0 5px;
        border-radius: 10px;
    }

        .progress-bar .step.active {
            background-color: var(--primaryfiber-blue);
        }

.form-section h1 {
    font-family: 'Gilroy-Black', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 48px;
    text-align: left;
    position: relative;
    margin-bottom: 8px;
}

.form-section p {
    font-size: var(--font-size-m);
    color: var(--gray);
    margin-bottom: 10px;
}

/*.input-label {
    display: block;
    font-size: var(--font-size-m);
    margin-top: 33px;
    margin-bottom: 7px;
    text-align: left;
}*/

.form-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.column {
    width: calc(50% - 10px);
}

.row {
    width: calc(100%);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.button-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-xxl);
}

.left-group {
    margin-right: auto;
}

.right-group {
    display: flex;
    gap: 10px;
}

.icon {
    position: relative;
    display: inline-block;
}

.tooltip {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #261550;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    font-size: 15px;
    white-space: normal;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.2s ease;
    width: 200px;
    text-align: center;
}

.icon:hover .tooltip {
    display: block;
    opacity: 1;
}

/*.checkbox-container {
    display: flex;
    align-items: center;
    margin-top: 20px;
}*/

.checkbox-label {
    margin-left: 10px;
}


/*.continue-button {
    width: 100%;
    padding: 12px;
    border: none;
    font-size: var(--font-size-m);
    align-items: center;
    align-self: stretch;
    border-radius: 100px;
    display: flex;
    gap: 8px;
    height: 44px;
    justify-content: center;
    font-weight: bold;
    position: relative;
    background-color: var(--neutrallight-gray);
    color: var(--primarynavy-blue-40);
    opacity: 0.5;
    font-family: "GilroyBold";*/
    /*pointer-events: none;*/
/*}

    .continue-button.enabled {
        background-color: var(--primaryfiber-blue);
        color: var(--neutralwhite);
        opacity: 1;
        pointer-events: all;
        font-family: "GilroyBold";
        font-weight: 400;
        font-size: var(--font-size-m);
        text-align: center;
    }*/



.continue-btn {
    background-color: var(--primaryfiber-blue);
    color: white;
    border-radius: 100px;
    width: 117px;
    height: 44px;
    min-width: 96px;
}

.icon {
    position: relative;
    display: inline-block;
}

.tooltip {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #012639;
    color: #fff;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 13px;
    white-space: normal;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.2s ease;
    width: 250px;
    height: 61px;
    text-align: left;
    margin-bottom: 5px;
}

    .tooltip::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #333 transparent transparent transparent;
    }

.icon:hover .tooltip {
    display: block;
    opacity: 1;
}

.label {
    align-items: center;
    align-self: stretch;
    display: flex;
    gap: 6px;
    height: 20px;
    position: relative;
    width: 100%;
    margin-top: 19px;
    margin-bottom: 7px;
}

.password-container {
    position: relative;
    align-items: center;
    /*margin-bottom: 20px;*/
}

/*.password-conditions {
    text-align: left;
    list-style: none;
    margin: 0;
    padding: 0;
    display: list-item;
    margin-top: 1rem;*/
    /*grid-template-columns: repeat(2, 1fr);*/
    /* gap: 10px;*/
/*}

    .password-conditions li {
        font-size: var(--font-size-s);
        color: #666;
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }*/

.round-button {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--neutralvelvet-black-20);
    border: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    pointer-events: none;
}

.tick-mark {
    top: -2px;
    width: 12px;
    height: 6px;
    border-left: 2px solid var(--neutralwhite);
    border-bottom: 2px solid var(--neutralwhite);
    transform: rotate(-45deg);
    opacity: 1;
    position: relative;
}

.round-button.active {
    background-color: var(--secondaryemerald);
    cursor: pointer;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 65%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

    .password-toggle img {
        width: 20px;
        height: 20px;
    }

/*.checkbox-container {
    display: flex;
    align-items: center;
    margin-top: 5%;
}*/

.checkbox-label {
    margin-left: 10px;
}

.captcha {
    align-items: flex-start;
    align-self: stretch;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 10px;
    position: relative;
    width: 100%;
}

.captcha-1 {
    align-items: center;
    background-color: var(--neutralwhite);
    border: 1.06px solid;
    border-color: var(--neutralvelvet-black-20);
    border-radius: 8px;
    display: flex;
    flex: 0 0 auto;
    justify-content: space-between;
    padding: 24px 20px;
    position: relative;
    margin-top: 5%;
    width: 375px;
    max-width: 90%;
}

.selection {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 20px;
    position: relative;
}

.icon-check {
    height: 33px;
    position: relative;
    width: 29.09px;
}

.im-not-a-robot {
    color: var(--neutralvelvet-black);
    font-weight: 400;
    line-height: 20px;
    position: relative;
    width: 150px;
}

.recaptcha-button-blue-png-1 {
    height: 30.93px;
    object-fit: cover;
    position: relative;
    width: 27.27px;
}

.para-create {
    margin-top: 5px;
}

@media (max-width: 768px) {
    .container-residence {
        width: 90%;
        margin-top: 0px;
        padding: 20px;
        margin-bottom: 20%;
    }

    .bottom-container-2 {
        max-width: 90%;
    }

    .card-createprofile {
        width: 90%;
    }

    .card-checkemail {
        width: 90%;
    }

    .form-columns {
        flex-direction: column;
        gap: 20px;
    }

    .column {
        width: 100%;
    }

    .progress-bar .step {
        width: 23%;
    }

    .continue-button,
    .back-btn {
        width: 100%;
    }

    .input-group {
        max-width: 90%;
    }
}

@media (max-width: 414px) {
    .container-residence {
        padding: 15px;
        margin-top: 0px;
        margin-bottom: 20%;
    }

    .card-createprofile {
        margin-top: -100px;
        width: 90%;
    }

    .bottom-container-2 {
        max-width: 90%;
    }

    .card-checkemail {
        width: 90%;
    }

    .input-group {
        max-width: 90%;
    }

    /* .logo {
        width: 180px;
        height: 60px;
        margin-bottom: 30px;
    }*/


    .header-bg {
        height: 35vh;
        background-image: none !important;
    }

    .input-field {
        font-size: var(--font-size-s);
        padding: 10px;
    }

    .continue-button,
    .back-btn {
        font-size: var(--font-size-m);
        height: 40px;
    }

    .right-group {
        display: flex;
        gap: 2px;
    }
}

.currency-input {
    position: relative;
}

.currency-symbol {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--font-size-m);
    color: #515156;
    z-index: 1;
}

.currency-input input {
    padding-left: 25px;
}
