@charset "utf-8";
/* CSS Document */

*{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
a{
    text-decoration: none;
}
        
        #wlcmScr{
            margin: auto;
            margin-top: 20px;
            width: 780px;
            height: 580px;
            border-radius: 20px;
            background-color: rgba(3,83,205,0.90);
            border: 40px solid #ccc;
            box-shadow: 0px 0px 40px #333;
        }
        
        #wlcmSec{
            width: 700px;
            height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        #wlcmHdn{
            font-size: 30px;
            color: #fff;
            text-align: center;
        }
        
        #wlcmSbHdn{
            font-size: 18px;
            color: #fff;
            text-align: center;
        }
        
        #cntnBtn{
            margin-top: 50px;
            width: 280px;
            height: 50px;
            line-height: 45px;
            background-color: #fff;
            color: #535353;
            border: none;
            font-weight: 600;
            box-shadow: 0px 0px 10px #ccc;
            border-radius: 50px;
            font-size: 16px;
        }
        
/*        Banking screen css Start ****************/
        
        #bankingScr, #depositScr, #depositConfScr, #depositSuccessScr{
            margin: auto;
            margin-top: 20px;
            width: 780px;
            height: 580px;
            border-radius: 20px;
            background-color: rgba(3,83,205,0.90);
            border: 40px solid #ccc;
            box-shadow: 0px 0px 40px #333;
            display: hidden;
        }
        
        #hdr{
            height: 70px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #fff;
            padding: 0px 10px;
        }
        
        #logo{
            height: 40px;
            font-size: 20px;
            font-weight: 600;
            padding: 0px 10px;
            background-color: rgba(34,66,187,0.78);
            color: #fff;
            text-align: center;
            line-height: 35px;
            backdrop-filter: blur(2px);
            box-shadow: 0 0 5px #222;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }
        
        #dtAndTm{
            width: 170px;
            height: 50px;
            padding: 5px;
        }
        
        #usrNm{
            font-size: 16px;
        }
        
        #currDtAndTM{
            font-size: 12px;
            margin-top: 5px;
        }
        
        #chooseOpt{
            padding: 10px;
            line-height: 40px;
            color:#fff;
            font-size: 18px;
            text-align: left;
            font-weight: 400;
            letter-spacing: 1.5px;
        }

        #allOpt{
            width: 700px;
            height: 400px;
            padding: 0px 20px;
            display: flex;
            justify-content: space-between;

            
        }
        
        #leftBtn-bx, #rightBtn-bx{
            width: 230px;
            height: 350px;
            padding: 10px 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .rgtBtn, .lftBtn{
            width: 230px;
            height: 60px;
            padding: 10px;
            color: #fff;
            border-radius: 5px;
            backdrop-filter: blur(2px);
            box-shadow: 0 0 10px rgba(8, 7, 16, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            background-color: rgba(255, 255, 255, 0.13);
        }
    
        .rgtBtn>h1, .lftBtn>h1{
            font-size: 14px;
            text-align: right;
            margin-bottom: 5px;
            letter-spacing: 1.5px;
        }
        .rgtBtn>h2, .lftBtn>h2{
            font-size: 11px;
            text-align: right;
        }
        
        .rgtBtn>h1, .rgtBtn>h2{
            text-align: left;
        }  
/*        Banking main screen css End  ****************/
        
        
        
/*        deposit money screen start */
        #enterAmt{
            width: 700px;
            height: 370px;
            background-color: darkblue;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        #depositAmtInput, #confDepoInput{
            width: 250px;
            height: 50px;
            padding: 10px;
            margin: 50px 0;
            font-size: 25px;
            color: rgba(0,107,236,1.00);
        }
        
        #depositAmtInput:focus, #confDepositInput:focus{
            outline: none;
        }
        
        #depositMoneyForm>label, #confdepoForm>label{
            font-size: 25px;
            color: #fff;
        }
        
        
        #depositBtn, #canDepositBtn, #confirmDepositBtn{
            width: 120px;
            padding: 10px;
            color: #000;
            font-size: 18px;
            border-radius: 5px;
            backdrop-filter: blur(2px);
            box-shadow: 0 0 10px rgba(8, 7, 16, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            background-color: #fff;
            
        }
        
/*        deposit money screen end */
        
        #depoSucessMsg{
            width: 700px;
            height: 370px;
            background-color: darkblue;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        #successImg{
            width: 100px;
            height: 100px;
            border-radius: 50px;
            background-image: url("img/successImg.png");
            background-size: cover;
        }
        
        #failedImg{
            width: 150px;
            height: 100px;
            border-radius: 50px;
            background-image: url("img/transaction_failed.png");
            background-size: cover;
        }
        
        #depoSucessMsg>h1{
            color: #00DC0B;
            margin-top: 10px;
            margin-bottom:10px; 
        }


#login {
    margin-top: 20px;
    width: 400px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 5px 5px rgba(8, 7, 16, 0.6);
    background-color: #fff;
}
#uname, #upass, #email, #phone, #fname, #lname{
    width: 300px;
    height: 30px;
    padding-left: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    border-radius: 5px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: #FFFFFF;
    box-shadow: 0px 0px 1px #333;
}

#uname:focus, #fname:focus,#lname:focus,#email:focus,#phone:focus,#upass:focus{
    outline: none;
}

#submit{
    width: 300px;
    height: 40px;
    margin: 10px 0;
    font-size: 20px;
    border-radius: 5px;
    background-color: rgba(3,83,205,0.90);
    color: #fff;
}



#register {
    margin-top: 20px;
    margin-bottom: 30px;
    width: 400px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 5px 5px rgba(8, 7, 16, 0.6);
    background-color: #fff;
}

#logHd,#regHd {
    color: #fff;
}

#regLink {
    color:#000;
}

#regLink>a {
    background-color:#5D78F5;
    color:#fff;
    padding: 2px 5px;
}

#alert {
    width: 350px;
    height: 50px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:absolute;
    top:70px;
    left: 520px;
    border-radius: 3px;
    box-shadow: 0 0px 15px rgba(8, 7, 16, 0.6);
    background-color: rgba(12,175,0,0.80);
}

#alert>h1{
    font-size: 18px;
    color: #fff;
}
#closeBtn{
    background-color: #0036E4;
    padding: 5px 10px;
    color: #FFF;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

#alert:target{
    display: none;
}

#trasaction-cont{
    color: #fff;
    font-size: 20px;
    background-color: cornflowerblue;
}
tr{
    background-color: rgba(0,196,205,1.00);
}

td{
    width: 120PX;
    height: 33px;
    text-align: center;
}


#mini-cont {
    width: 700px;
    height: 370px;
    background-color: darkblue;
}
