@import url('https://fonts.googleapis.com/css2?family=Konkhmer+Sleokchher&family=Rubik+Broken+Fax&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@500&family=Noto+Sans+JP:wght@400;500&family=Noto+Sans+KR:wght@500&family=Open+Sans:wght@400;500&display=swap");
body {
    font-family: 'Nunito sans', sans-serif;
    display: grid;
   overflow: hidden;
}

.btn {
    font-size: 1rem;
    font-weight: 400;
    border-radius: 5px;
}

.btn i {
    vertical-align: text-top;
}


.bg-form {
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    /* min-width: 640px;
    width: 660px; */
    min-width: 509px;
    width: 509px;
    overflow: auto;
}

.bg-form-group {
    background-color: #ffffff;
    padding: 30px;
    /*margin-left: 4.1rem;*/
    width: 100%;
    border-radius: 3rem;
}

.bg-logo {
    margin-bottom: 2rem;
    /*margin-left: 4.1rem;*/
    width: 100%;
}

form input[type="text"]:focus,
form input[type="password"]:focus {
    box-shadow: 0 0 0 1px #04e531;
}
.form-check{
    font-size: 1.2rem;
}

form .form-check-input:focus {
    border-color: #059941;
    outline: 0;
    box-shadow: 0 0 0 0 #059941;
}
form .form-check-input:checked {
    background-color: #059941;
    border-color: #059941;
}

form a {
    color: #059941;
    text-decoration: none;
}

form a:hover {
    color: #059941;
    text-decoration: underline;
}

form button.btn-signup {
    color: #6c757d;
    border-color: #ccc;   
    background-color: #f5f5f5;
}

form button.btn-signup:hover {
    color: #fff;
    border-color: #ccc;   
    background-color: #059941;
}

form button.btn-signup:focus {
    outline: 0;
    box-shadow: 0 0 0 1px #059941;
}
.btn-google img{
    width: 1.5rem;
    height: 1.5rem;
}
form button.btn-google {
    color: #6c757d;
    border-color: #ccc;   
    background-color: #f5f5f5;
}

form button.btn-google:hover {
    color: #6c757d;
    border-color: #ccc;   
    background-color: #ffffff;
}

form button.btn-google:focus {
    outline: 0;
    box-shadow: 0 0 0 1px #059941;
}

.divider-content-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    background-color: #fff;
    font-size: 1rem;
    font-weight: 500;
    color: #999;
}
.form-control{
    font-size: 16px;
    border-radius: 5px;
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #00000040;
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #00000040;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #00000040;
}


form .divider {
    text-align: center !important;
}


p{
    font-size: 0.73rem;
    font-weight: 500;
}

select {
    border: none;
    font-size: 12px;
}

.bg-holder {
    position: absolute;
    width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media only screen and (max-width: 991px) {
    .bg-form {
        min-width: auto;
        width: 90%;
        height: 90%;
        background-color: #f5f5f5b8;
    }
}

    /*@media only screen and (max-width: 800px) {
    .bg-form-group {
        flex: 1 0 100%;
        background-color: #ffffff;
        width: 100%;
        padding: 23px;
        margin-left: 0rem;
    }
    .bg-logo {
        margin-left: 0rem;
        width: 100%;
    }
    .btn-signup{
        width: 20rem;
        margin-left: 0.8rem;
    }
}*/
    .dropdown {
        font-family: 'Poppins';
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 112px;
        padding: 0rem 0rem;
        cursor: pointer;
        font-size: 12px;
        float: right;
        border-radius: 5px;
    }

    .warpper {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }

    .dropdown .warpper img {
        width: 15px;
        height: 15px;
    }

    .list {
        background-color: #fff;
        position: absolute;
        top: 30px;
        left: 0;
        /*max-height: 250px;*/
        cursor: pointer;
        box-shadow: 0 4px 8px rgb(105, 104, 104);
        /*width: 100%;*/
        display: none;
        z-index: 1;
    }

        .list img {
            width: 15px;
            height: 15px;
        }

    .show {
        display: block;
    }

    .item {
        display: flex;
        align-items: center;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }

        .item:hover {
            background-color: #059941;
            color: #fff;
        }





