.register-page {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: stretch;
    min-height: 100vh;
}
.register-page > div{
    padding: 20px;
}
.register-page .right {
    width: 100%;
    background: var(--bg-4);
}
.register-page .left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    background: var(--white);
}
@media screen and (max-width: 991px){
    .register-page {
        flex-wrap: wrap;
    }
    .register-page .left {
        order: 1;
    }
}
.color-primary{
    color: var(--primary);
}
.register-page .tf-product-delivery{
    padding: 30px 10px;
    gap: 8px;
    background: var(--bg-1);
}
.sub-title{
    font-size: 16px;
}
.title-2{
    font-size: 26px;
}
.mobile-otp-group{
    position: relative;
}
.mobile-otp-group .send-otp,
.mobile-otp-group .change-number,
.verified-btn{
    position: absolute;
    right: 10px;
    top: 9px;
    background: var(--bg-1);
    border: none;
    padding: 5px 10px;
    border-radius: 2px;
    color: var(--primary);
    font-weight: 600;
}
.mobile-otp-group .change-number {
    color: var(--secondary);
}
.verified-btn{
    color: var(--success);
    display: none;
}
.seller-form{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.seller-form form{
    width: 100%;
    max-width: 500px;
}
form .password .show-pass {
    margin-left: -43px;
    font-size: 18px;
    color: var(--Icon);
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 10px;
}
form .password .show-pass .view {
    display: none;
}
form .password .show-pass.active .hide {
    display: none;
}
form .password .show-pass.active .view {
    display: inline-block;
}
input:disabled,
button:disabled{
    opacity: 0.5;
}
input,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    
}
.account-status {
    padding: 3px;
    margin-left: auto;
    margin-right: 40px;
    border-radius: 5px;
    color: var(--White);
}
.account-status.pending{
    background: var(--Secondary);
}
.account-status.active{
    background: var(--bs-success);
}
.under-review-box{
    min-height: 70vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.create-new-btn{
    padding: 15px 10px;
    background: #fff;
    box-shadow: 0px -2px 5px -2px #d8d8d8;
    text-align: center;
    font-weight: bold;
}
.create-new-btn:hover{
    background: #000;
    color: #fff;
}