#loginMain{
    min-height: 100vh;
    font-family: "Arial Regular";
}

.left-side-login{
    padding: 50px 0;
    border-right: 2px solid #e1e1e1;
}

.custom-row{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.br-color {
    border-color: rgb(57, 57, 57) !important;
}

.logo_main {
    font-size: 17px;
    color: #a08b45;
    margin-top: 15px;
}

.main{
    color: #a08b45;
    font-size: 21px;
    margin-top: 35px;
}

.brand{
    text-align: center;
}

.loginBox{
    width: 50%;
}

.right-side-login{
    display: flex;
    justify-content: center;
}

.right-side-login h5{
    text-align: center;
    color: #393939;
    font-size: 25px;
}

.inputDiv{
    border: 1px solid #a7a7a8;
    border-radius: 5px;
    position: relative;
    height: 41px;
}

.email, .password {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a7a7a8;
    transition: all 250ms ease-in-out;
    background-color: #ffffff;
    font-size: 14px;
    z-index: -1;
    visibility:hidden;
}


.loginInputs{
    border: none;
    width: 100%;
    border-radius: 5px;
    height: 39px;
    padding:0 15px;
    padding-top: 3px;
    font-size:14px;
}

.loginInputs:focus{
    outline: 0!important;
}


.inputFocus {
    top: -1%;
    background-color: #ffffff;
    color: #393939;
    visibility: visible;
    z-index: 1;
}

.divFocus{
    border-color: #393939;
}

.boxForBtn{
    text-align: center;
}

.submitBtnBox{
    background-color:#a08b45 ;
    display: inline-block;
    width: 110px;
    height: 34px;
    border-radius: 20px;
}

.submitBtn{
    background-color: transparent;
    border: none;
    width: 100%;
    height: 100%;
    color: #ffffff;
    outline: none!important;
    font-size: 16px;
}