@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;1,100;1,400&display=swap');

:root {
    --color-base: #F9FBFF;
    --color-background: #25223C;
    --color-primary: #7BBBFD;
}

body {
    font-family: "Work Sans", sans-serif;
    background-color: var(--color-base);
    font-size: 16px;
}

    .main-wrapper {
        max-width: 550px;
    }
    .otp-wrapper {
        display: flex;
        justify-content: center;
    }
        .otp {
            display:inline-block;
            width: 100%;
            max-width:50px;
            height:50px;
            text-align:center;
            margin: 0 5px;
            border: 1px solid #ccc;
        }
            .otp:first-child {
                border-radius: 5px 0 0 5px;
            }
            .otp:last-child {
                border-radius: 0 5px 5px 0;
            }

    .site-header {
        background-color: var(--color-background);
        color: #fff;
        width: 100%;
        height: 250px;
        position: absolute;
        top: 0;
        left: 0;
        padding: 10px 0;
        text-align: center;
    }

    .card {
        box-shadow: -4px 4px 20px 4px rgba(4, 116, 124, 0.05);
    }

    .logo {
        position: relative;
    }

    .btn-primary {
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        line-height: 18px;
        letter-spacing: -0.6px;
        fill: #F2F5F9;
        color: #F2F5F9;
        padding: 12px 45px 12px 45px;
        background-color: var(--color-primary);
        outline: none;
        border: 0;
    }
        .btn-primary:hover {
            background-color: #5183B6;
        }

        .btn-primary:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }

/* overwirte the flag icon image, to use local image */
.iti__flag {background-image: url("img/flags.png");}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {background-image: url("img/flags@2x.png");}
}

.iti {
    width: 100%;
}

.nav-pills .nav-link {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    color: var(--color-background);
    transition: 0.3s;
}

.nav-pills .nav-link.active {
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 40px;
}

.grecaptcha-badge {
    display: none;
}

.text-info {
    color: var(--color-background);
}

.navbar {
    z-index: 1;
}
