body {
    margin: 0;
    padding: 0;
    background: #f0f3f5;
    width: 100%;
    height: 100vh;
}

.loginPage {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    width: 500px;
    min-width: 300px;
    max-width: 40%;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #babec8;
    box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    max-height: 90%;
    overflow: auto;
}

    .login-form::-webkit-scrollbar {
        border-radius: 10px;
        width: 6px;
    }

    .login-form::-webkit-scrollbar-thumb {
        background: #babec8;
        border-radius: 10px;
    }

.logo {
    width: 220px;
    margin-bottom: 25px;
}

.InputBox {
    width: 100%;
}

.inputItem {
    padding: 0 15px;
    height: 44px;
    border: 2px solid #babec8;
    margin-bottom: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    position: relative;
}

.input-group-text {
    border: none;
    border-right: 1px solid #ced4da;
}

.phoneInput {
    padding: 0;
    padding-left: 15px;
    justify-content: space-between;
}

.selectItem {
    padding: 0 15px;
    width: calc(100%);
    height: 44px;
    border: 2px solid #babec8;
    margin-bottom: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    outline: none;
}

.inputItem img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.inputItem input {
    border: none;
    flex: 1;
    height: 40px;
    outline: none;
    width: inherit;
}

    .inputItem input::placeholder {
        color: #c0c4cc;
    }

.ForgetPwd {
    width: 100%;
    text-align: right;
    font-size: 14px;
}

    .ForgetPwd a {
        text-decoration: none;
        color: #8d8f99;
    }

.submitDiv {
    width: 100%;
    height: 40px;
    text-align: center;
    border-radius: 5px;
    margin-top: 10px;
}

.submitBtn {
    color: #fff;
    border: none;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, #485674, #3e4e6d);
    border-radius: 5px;
    line-height: 40px;
    font-size: 16px;
    cursor: pointer;
}

.form {
    width: 100%;
    height: 100%;
}

.errorlable {
    color: red;
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 14px;
}

.btn-primary {
    background-color: #485674;
    border-color: #485674;
}

    .btn-primary:hover {
        background-color: #485674;
        border-color: #485674;
    }

    .btn-primary:not(#qwerrererew):active {
        background-color: #485674;
        border-color: #485674;
    }

    .btn-primary:disabled {
        background-color: #485674b3;
        border-color: #485674b3;
    }
