@font-face {
    font-family: "Neue Haas Grotesk";
    src: url("https://leatherbackstorage.blob.core.windows.net/frontend/fonts/NHaasGroteskTXPro-55Rg.ttf");
}

@font-face {
    font-family: "Neue Haas Grotesk Semibold";
    src: url("https://leatherbackstorage.blob.core.windows.net/frontend/fonts/NHaasGroteskTXPro-65Md.ttf");
}

@font-face {
    font-family: "Neue Haas Grotesk Bold";
    src: url("https://leatherbackstorage.blob.core.windows.net/frontend/fonts/NHaasGroteskTXPro-75Bd.ttf");
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

body {
    margin: 0;
    background-image: url(../assets/bg/bg-2.png);
    background-color: #003eff;
    background-size: cover;
    font-family: "Neue Haas Grotesk";
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.elipse {
    box-sizing: border-box;
    position: absolute;
    width: 1255px;
    height: 1255px;
    left: -1075px;
    top: -551px;
    border: 201px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.container {
    width: 27%;
    margin: 0 auto;
    position: relative;
    padding-top: 2.5rem;
}

.logo {
    width: 35%;
    margin: 0 auto 1.5rem;
}

    .logo img {
        width: 100%;
    }

.card {
    background: #fff;
    border-radius: 10px;
    margin: 0 auto 1.5rem;
    padding: 4rem 2rem 2rem;
}

.title {
    margin-bottom: 3rem;
}

    .title h1 {
        text-align: center;
        font-family: "Neue Haas Grotesk Semibold";
        font-size: 24px;
        color: #1f1f23;
        margin: 0 0 1rem;
    }

    .title p {
        color: #666f77;
        font-weight: 400;
        font-size: 14px;
        margin: 0;
    }

.form {
    position: relative;
}

.field {
    display: flex;
    padding: 1rem;
    border: 1px solid rgba(102, 111, 119, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
}

    .field img {
        margin-right: 8px;
        width: 1.25rem;
        height: 1.25rem;
    }

    .field input {
        box-shadow: none;
        border: none;
        font-size: 13px;
        letter-spacing: 0.2px;
        width: 100%;
        font-family: "Neue Haas Grotesk";
    }

        .field input:focus {
            outline: none;
        }

    .field p {
        margin: 0;
    }

    .field button {
        background-color: inherit;
        border: none;
        padding: 0;
        color: #666f77;
    }

.country-select-dropdown {
    position: absolute;
    top: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(102, 111, 119, 0.1);
    margin-top: 0.5rem;
    width: 91%;
    z-index: 1000;
    display: none;
    transition: all 0.5s ease-in-out;
}

    .country-select-dropdown .country-list {
        height: auto;
        max-height: 200px;
        overflow-y: scroll;
        margin-top: 1rem;
    }

        .country-select-dropdown .country-list .country {
            padding: 1rem;
            border-radius: 5px;
            cursor: pointer;
        }

            .country-select-dropdown .country-list .country:hover {
                background: rgba(102, 111, 119, 0.1);
            }

.country-code-select-dropdown {
    position: absolute;
    top: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(102, 111, 119, 0.1);
    margin-top: 0.5rem;
    left: 0;
    width: 105%;
    z-index: 1000;
    display: none;
    transition: all 0.5s ease-in-out;
}

    .country-code-select-dropdown .code-list {
        height: 200px;
        overflow-y: scroll;
        margin-top: 1rem;
    }

        .country-code-select-dropdown .code-list .country {
            padding: 1rem;
            border-radius: 5px;
            cursor: pointer;
        }

            .country-code-select-dropdown .code-list .country:hover {
                background: rgba(102, 111, 119, 0.1);
            }

.country-search-input {
    background: #f4f4f4;
    border: none;
    width: 93%;
    padding: 0.8rem;
    border-radius: 5px;
}

.country-code-search-input {
    background: #f4f4f4;
    border: none;
    width: 78%;
    padding: 0.8rem;
    border-radius: 5px;
}

.terms {
    font-size: 14px;
    color: #666f77;
}

.btn {
    background: #f4f4f4;
    border-radius: 10px;
    border: none;
    width: 100%;
    padding: 1rem;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    cursor: pointer;
    color: #a1a5aa;
}

.footer-container {
    width: 100%;
    margin: 2rem auto 1rem;
    /*position: fixed;
    bottom: 0;*/
}

    .footer-container .footer-content {
        margin: 0 auto;
        width: 90%;
    }

.text-white {
    color: #ffffff;
}

/* Text Decoration */
.no-deco {
    text-decoration: none;
}

/* Display */
.flex {
    display: flex;
}

/* Align */
.text-center {
    text-align: center;
}

/* Justify Content */
.justify-between {
    justify-content: space-between;
}

/* Checkbox styling */
.checkbox {
    position: relative;
    margin: 1rem 0 3rem;
}

    .checkbox input {
        -webkit-appearance: none;
        width: 1.2rem;
        height: 1.2rem;
        border: 1px solid #a1a5aa;
        border-radius: 3px;
        vertical-align: sub;
        position: relative;
        cursor: pointer;
        outline: none;
    }

        .checkbox input:checked {
            background-color: #003eff;
            border-color: #003eff;
            width: 1.2rem;
            height: 1.2rem;
        }

            .checkbox input:checked + label {
                font-weight: 600;
            }

        .checkbox input:after {
            content: "";
            width: 100%;
            height: 100%;
            position: absolute;
            background-image: url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9JzMwMHB4JyB3aWR0aD0nMzAwcHgnICBmaWxsPSIjZmZmZmZmIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgdmVyc2lvbj0iMS4xIiB4PSIwcHgiIHk9IjBweCI+PHRpdGxlPmljb25fYnlfUG9zaGx5YWtvdjEwPC90aXRsZT48ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz48ZyBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48ZyBmaWxsPSIjZmZmZmZmIj48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyNi4wMDAwMDAsIDI2LjAwMDAwMCkiPjxwYXRoIGQ9Ik0xNy45OTk5ODc4LDMyLjQgTDEwLjk5OTk4NzgsMjUuNCBDMTAuMjI2Nzg5MSwyNC42MjY4MDE0IDguOTczMTg2NDQsMjQuNjI2ODAxNCA4LjE5OTk4Nzc5LDI1LjQgTDguMTk5OTg3NzksMjUuNCBDNy40MjY3ODkxNCwyNi4xNzMxOTg2IDcuNDI2Nzg5MTQsMjcuNDI2ODAxNCA4LjE5OTk4Nzc5LDI4LjIgTDE2LjU4NTc3NDIsMzYuNTg1Nzg2NCBDMTcuMzY2ODIyOCwzNy4zNjY4MzUgMTguNjMzMTUyOCwzNy4zNjY4MzUgMTkuNDE0MjAxNCwzNi41ODU3ODY0IEw0MC41OTk5ODc4LDE1LjQgQzQxLjM3MzE4NjQsMTQuNjI2ODAxNCA0MS4zNzMxODY0LDEzLjM3MzE5ODYgNDAuNTk5OTg3OCwxMi42IEw0MC41OTk5ODc4LDEyLjYgQzM5LjgyNjc4OTEsMTEuODI2ODAxNCAzOC41NzMxODY0LDExLjgyNjgwMTQgMzcuNzk5OTg3OCwxMi42IEwxNy45OTk5ODc4LDMyLjQgWiI+PC9wYXRoPjwvZz48L2c+PC9nPjwvc3ZnPg==");
            background-size: 40px;
            background-repeat: no-repeat;
            background-position: center;
        }

    .checkbox label {
        font-size: 12px;
        color: #666f77;
        margin-left: 2rem;
        position: absolute;
        left: 0;
        top: 5px;
    }

/* Phone number */
.phone-number {
    display: flex;
    justify-content: space-between;
}

    .phone-number .country-code {
        width: 30%;
        margin-right: 4%;
    }

    .phone-number .number {
        width: 66%;
    }

.password-btn {
    padding: 5px 1rem !important;
    font-size: 12px;
    text-align: center;
    font-weight: 500;
    position: absolute;
    right: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.password-check-area {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

    .password-check-area .password-check-item {
        font-size: 11px;
        border-radius: 5px;
        color: #a1a5aa;
        padding: 5px 0;
        text-align: center;
        border: 1px solid rgba(161, 165, 170, 0.2);
    }

.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: -7px !important;
}

.container {
    width: 100%;
    max-width: 455px;
    margin: 0 auto;
    position: relative;
    padding-top: 2.5rem;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}
/* Responsive Code */

@media only screen and (max-width: 400px) {
    .receive-otp {
        padding: 1em !important;
    }

    .card {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

.field select {
    box-shadow: none;
    border: none;
    font-size: 13px;
    letter-spacing: 0.2px;
    width: 100%;
    font-family: "Neue Haas Grotesk";
    color: #666f77;
    display: flex;
    align-items: center;
}

    .field select option {
        padding: 1px 2px 2px 1px;
    }
