html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.login-container{
    display: flex;
    width: 100%;
    height: 100%;
    background-color: white;
}
.otp-container{
    display: flex;
    width: 100%;
    height: 100%;
    background-color: white;

}
.login-container .left{
    display: flex;
    flex: 1;
    padding: 50px;
    flex-direction: column;
    justify-content: space-between;
}

.login-container .left .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 10px 10px;
}
.login-container .right{
    display: flex;
    flex: 2;
    flex-direction: column;
    justify-content: space-between;
    background-repeat: no-repeat;
    background-size: cover;
}
.login-container .left .bottom{
    display: flex;
    justify-content: center;
}
.login-container .left .bottom #tag{
    color: #FA0824;
    font-size: 15px;
    font-weight: 600;
}
.login-container .right .middle{
    display: flex;
    justify-content: center;
    height: 300px;
    background-color: rgba(250, 8, 36, 0.2);
    color: #fff;
    width: 90%;
    margin-left: 50px;
    border-radius: 10px;
}
.login-container .right .middle p{
    display: flex;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    color: black;
}

.login-container .right .bottom{
    display: flex;
    justify-content: right;
    gap: 10px;
    padding: 10px;
}
.login-container .right .bottom .icon{
    display: flex;
    background-color: #FA0824;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 40px;
    color: white;
    align-items: center;
    justify-content: center;

}

.otp-container .inner-container{
    margin-top: 10% ;
    width: 80%;
    height: 600px;
    display: flex;
    margin-left: 10%;
    box-shadow: 11px 10px 6px -7px rgba(40,56,145,1);
    -webkit-box-shadow: 11px 10px 6px -7px rgba(40,56,145,1);
    -moz-box-shadow: 11px 10px 6px -7px rgba(40,56,145,1);


    box-shadow: 12px -11px 6px -7px rgba(40,56,145,1);
-webkit-box-shadow: 12px -11px 6px -7px rgba(40,56,145,1);
-moz-box-shadow: 12px -11px 6px -7px rgba(40,56,145,1);
}

.inner-container .otp-left{
    display: flex;
    flex: 2;
    background-size: cover;
    background-repeat: no-repeat;
}
.inner-container .otp-right{
    width: 100%;
    display: flex;
    flex: 2;
    flex-direction: column;
    justify-content: space-between;

}
.inner-container .otp-right .img{
    display: flex;
    justify-content: right;
    padding: 10px;

}

.inner-container .otp-right .title h5{
    margin-top: 8px;
    margin-left: 8px;
    font-size: 25px !important;
    font-weight: 600;
}
.inner-container .otp-right .title{
    padding: 25px;
}
.inner-container .otp-right .title .text-title{
    font-size: 27px !important;
    font-weight: 600;
    color: #FA0824;
}
.inner-container .otp-right .title p{
    font-size: 16px !important;
    margin-left: 8px;
}
.inner-container .otp-right .bottom{
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 600px) {
    .login-container .right{
        display: none;
    }
    .date{
        display: none;
    }
    .inner-container .otp-left{
        display: none;
    }
  }

