body{
    padding: 0;
    margin: 0;
}
.container{
    margin-top: 1rem !important;
}
.btn2{
    float: right;
    background-color: rgba(0,0,0,0.0);
    border: none;
}
.card1{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 1; /*if we write 1 or 1000, this both of same*/
}
.ordercancel{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 1; /*if we write 1 or 1000, this both of same*/
}
.cover{
    width: 100%;
    height: 100%;
    position: fixed;
    display: none; /*When will click the button it show the popup window\*/
    z-index: 0; /*when we create cover our popup has gone back of this cover. so we are use z-index. it works, it take the popup over the cover. *//*if we write 0 or 999, this both of same*/
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
}
.selfbtn{
    background-image: linear-gradient(to bottom left, #344675, #263148, #344675);
    background-image: -webkit-linear-gradient(to bottom left, #344675, #263148, #344675);
}
.selfhdng{
    background-image: linear-gradient(to bottom left, #344675, #263148, #344675);
    background-image: -webkit-linear-gradient(to bottom left, #344675, #263148, #344675);
    height: 80px;
    vertical-align: middle;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.selffnt{
    color:#344675;
}
.mywidth{
    width: 120px;
}
.cust_dtl_width{
    width: 70px;
}
.selfintput{
    width: 146px;
    margin-left: 2px;
    margin-bottom: 9px;
}
.box {
    height: 200px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    overflow: auto;
}
.fontpaddingstyle{
    padding-right: 20px;
    font-weight: bold;
}

.table td, .table th{
    padding: 0.20rem;
    border: 1px solid #dde2e6;
}

.cash_dis{
    border: none;
    width: 100%;
    text-align: center;
}

.tab:focus{
    background:rgba(0, 0, 0, 0.1);
} 

.background{
    background: hsla(0, 100%, 0%, 0.4);
}

.txt-style{
    font-size: 16px;
    font-weight: 500;
    margin-right: 2px;
}

.login-page{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

.login-card{
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 60rem;
    height: 35rem;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.left, .right{
    height: 35rem;
    width: 30rem;
}

.login-img{
    height: 100%;
    width: 30rem;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem;    
}

.register-img{
    height: 100%;
    width: 30rem;
    border-bottom-right-radius: 1rem;
    border-top-right-radius: 1rem;    
}

.header{
    font-size: 1.6rem;
    font-weight: 500;
    color: #0e489b;
    margin-top: 1rem;
}

.register-header{
    margin-left: 2rem;
}

.login-form{
    padding: 2rem;
}

.login-inp{
    margin-top: 2rem;
    border: none;
    outline: none;
    border-bottom: 1px solid #917bff;
}

.login-button{
    width: 100%;
    margin-top: 2rem;
    border: none;
    outline: none;
    background:#917bff ;
    padding: 1rem;
    color: #fbfbfb;
    font-weight: 600;
    border-radius: .4rem;    
    box-shadow: 0 1rem 3rem #9985fbc5;
}

.have-account{
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #0e489b;
}

.have-account a{
    text-decoration: none;
    color: #917bff;
    text-transform: capitalize;
}

.success{
    color:#0e489b;
    list-style: none;
}

.error{
    color:rgba(255, 8, 0, 0.867);
    list-style: none;
}

@media (max-width: 1024px) {
    .login-card{width: 50rem;}
    .left, .right{width: 25rem;}
    .login-img{width: 25rem;}
}

@media (max-width: 992px) {
    .box {height: 150px;}
    .login-card{width: 40rem;}
    .left, .right{width: 20rem;}
    .login-img{width: 20rem;}
}

@media (max-width: 768px) {
    .container{width: 100% !important;}
    .login-card{width: 30rem;}    
    .header{text-align: center;}
    .left{ display: none; }
    .right{width: 100%;}
}

@media (min-width: 576px) {
    .container{width: 100% !important;}
}