html,body{
    margin:0;
    padding:0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-color: #f0f0f0;
    user-select: none;
}
.heading{
    z-index: 1;
    font-size: 30px;
    font-family: "Bitter", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    width: 100% !important;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #202122 , #000000); 
    font-style: normal;
    position: sticky;
    top: 0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
 
.heading h3{
    font-family: "Bitter", serif;
    font-optical-sizing: auto;
    font-weight:400;
    font-style: normal;
    color:#e7eaf6 ;
}
.heading span{
    color:#dde0f1;
    font-family: "Bitter", serif;
    font-optical-sizing: auto;
    font-weight:400;
    font-style: normal;
}


.box{
    margin:0 20px 0 20px;
    display: flex;
    justify-content:space-between;
    flex-direction: row;
}

.col{
    display: flex;
    flex-direction: column;
    width: 32.5%;
    
}

/* image style */
.col img{
    margin:10px 0;
    width: 100%;
    border-radius:10px;
}

img:hover{
    z-index: 0;
    filter: brightness(80%);
}
.btn button{
    border: none;
    background-color: #011F4B;
    color: #ffffff;
    font-size: 23px;
    margin: 10px;
    padding:10px;
    border-radius:10px;
    transition: transform 0.5s ease; /* smooth animation */

}
.btn button:hover{
    background:#03396C;
    transform: translateX(300px);
}

@keyframes moves{
    0%{
        position: fixed;
        transform:translateX(300px);
    }
    100%{
        transform:translateX(-300px);
    }
}
.btn{
    text-align: center;
}
@media screen and (max-width: 650px) {
.box{
    flex-direction: column;
}
.col{
    width: 100%;
}
}

/* -----------------login page design------------------- */
.loginpg{
    width: 100%;
    height: 100%;
    background: rgb(41, 40, 40);
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.logbox{
    color: white;
    background-color: black;
    border-radius:20px;
    margin:0 10px;
    padding: 20px;
    width: 500px;
    height: 40%;
    display: flex;
    flex-direction:column;
    flex-wrap: wrap;
    justify-content: space-around;
    overflow:hidden;
    animation:slide 0.50s ease 1;
}
input{
    height: 45px;
    font-size:15px;
    padding:0 0 0 5px;
    margin:0;
    border-radius:3px;
    color:white;
    border:2px rgb(158, 157, 157) solid;
    outline: none;
    background:rgb(0, 0, 0);
}

.text{
    font-size: 35px;
}
.logbox p{
    font-size:18px;
}

.otpbtn{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.otpbtn a{
    color: #799ed4;
    font-size:18px;
}

.otpbtn button{
    font-size:19px;
    color: black;
    background-color:white;
    padding:10px 6px;
    border-radius:10px;
    user-select: none;
    border: none;
}
.otpbtn button:hover{
    background-color:rgb(185, 184, 184);
    cursor:pointer;
}
.icons{
    font-size: 45px;
}

input:focus{
    border:2px solid #799ed4;
}

@media screen and (max-width:715px) {
    .logbox{
        width: 70%;
        height: 50%;
    }
}
@media screen and (max-width:470px) {
    .logbox{
        width: 70%;
        height: 40%;
    }
}

/*----------------OTP Page------------------*/
.otpbox{
    color: white;
    background-color: black;
    border-radius:20px;
    margin:0 10px;
    padding: 20px;
    width: 400px;
    height: 30%;
    display: flex;
    flex-direction:column;
    justify-content: space-around;
    flex-wrap: wrap;
    overflow:hidden;
    animation:slide 0.90s ease 1;
}
@keyframes slide{
    0%{
        position:fixed;
        opacity: 0;
        transform: translateX(30%);
    }
}
.otp-container{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.otp-input{
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 8px;
    outline: none;
}
.entotp {
    text-align:right;
}
.entotp button{
    font-size:19px;
    color: black;
    background-color:white;
    padding:10px 6px;
    border-radius:10px;
    user-select: none;
    border: none;
}
.entotp button:hover{
    background-color:rgb(185, 184, 184);
    cursor:pointer;
}
@media screen and (max-width:860px){
    .otpbox{
        width: 70%;
        height: 30%;
    }
}
@media screen and (max-width:370px){
    .otpbox{
        width: 80%;
        height: 30%;
    }
}
/* notifications & info style */
.info{
    position: fixed;
    top:80%;
    left:100px;
    padding: 10px;
    border-radius:10px;
    background:black;
    color: #dde0f1;
    display: flex;
    justify-content:space-around;
    flex-direction: column;
    width: 230px;
    animation:alert 0.60s ease 1;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
@keyframes alert{
    0%{
        position:fixed;
        opacity:0;
        transform:translateX(-30%);
    }
}
.info .cntbtn{
    text-align:right;
}
.info i,h3{
    font-size:30px;
    margin:0 10px;
    color: green;
}
.info h3,p{
    margin: 10px 0;
}
.info p{
    font-size: 20px;
}
.info button{
    padding: 7px;
    font-size:17px;
    border:none;
    border-radius:5px;
}
.info button:active{
    background: rgb(200, 216, 200);
}
.error,.error i {
    color: red;
}

/*---------inactive---------*/
.logbox.inactive{
    opacity: 0;
    z-index: -1;
}
 