﻿body {
}
/* all */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");


:root {
    --main-blue: #71b7e6;
    --main-purple: #9b59b6;
    --main-grey: #ccc;
    --sub-grey: #d9d9d9;
}


/* container and form */
.mcontainer {
    max-width: 700px;
    width: 100%;
    /* background: #B2E0F0;*/
    padding: 25px 30px;
    border-radius: 5px;
}

.container .title {
    font-size: 25px;
    font-weight: 800;
    /*position: relative;*/
    color: #0630FF;
    margin-top: 12%;
    margin-bottom: 5%;
    text-align: center;
    padding-top: 5%;
}

    .container .title::before {
        content: "";
        /*  position: absolute;*/
        height: 3.5px;
        width: 30px;
        background: linear-gradient(135deg, var(--main-blue), #00259A);
        left: 0;
        bottom: 0;
    }

.container form .user__details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 20px 12px 25px;
}
/* inside the form user details */
form .user__details .input__box,
form .user__details .input__box1 {
    width: calc(100% / 2 - 20px);
    margin-bottom: 15px;
}

.user__details .input__box .details,
.user__details .input__box1 .details {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}


.user__details .input__box1 .ms-options-wrap button {
    height: 45px;
    width: 100%;
}


.user__details .input__box_color .details {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.user__details .input__box input,
#txtHQ, #txtdesc, #drpProduct, #drpStatus, #drpRole, .drpBank, .drppro, .drpServices, .control-label {
    height: 45px;
    width: 100%;
    outline: none;
    border-radius: 5px;
    border: 1px solid var(--main-grey);
    padding-left: 15px;
    font-size: 16px;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}


.user__details .input__box div {
    height: 45px;
    width: 100%;
    outline: none;
    border-radius: 5px;
    border: 1px solid var(--main-grey);
    /*    padding-left: 15px;*/
    font-size: 16px;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}

.user__details .input__box1 div {
    width: 100% !important;
}

.user__details .input__box input:focus, .user__details .input__box input:valid {
    /*    border-color: #00259A;*/
}

/* inside the form gender details */

/*form .gender__details .gender__title {
    font-size: 20px;
    font-weight: 500;
}

form .gender__details .category {
    display: flex;
    width: 80%;
    margin: 15px 0;
    justify-content: space-between;
}

.gender__details .category label {
    display: flex;
    align-items: center;
}

.gender__details .category .dot {
    height: 18px;
    width: 18px;
    background: var(--sub-grey);
    border-radius: 50%;
    margin: 10px;
    border: 5px solid transparent;
    transition: all 0.3s ease;
}

#dot-1:checked ~ .category .one,
#dot-2:checked ~ .category .two,
#dot-3:checked ~ .category .three {
    border-color: var(--sub-grey);
    background: #00259A;
}

form input[type="radio"] {
    display: none;
}
*/
/* submit button */
form .button {
    height: 45px;
    margin: 45px 100px;
}

    form .button input {
        height: 100%;
        width: 100%;
        outline: none;
        color: #fff;
        border: none;
        font-size: 18px;
        font-weight: 500;
        border-radius: 5px;
        background: #0630FF;
        /*        background: linear-gradient(135deg, var(--main-blue), #00259A);*/
        transition: all 0.3s ease;
    }

        form .button input:hover {
            background: linear-gradient(-135deg, var(--main-blue), #00259A);
        }

@media only screen and (max-width: 584px) {
    .container {
        max-width: 100%;
    }

    form .user__details .input__box {
        margin-bottom: 15px;
        width: 100%;
    }

    /* form .gender__details .category {
        width: 100%;
    }
*/
    .container form .user__details {
        /* max-height: 300px;
        overflow-y: scroll;*/
    }

    .user__details::-webkit-scrollbar {
        width: 0;
    }
}
