@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,400;0,500;0,600;1,300&family=Roboto:wght@100;300;400;500;700&display=swap');

:root{
--clroff: #F6F5F5 ;
--clrblurwyt: #e4e3e3 ;
--clracent: #EE6F57;
--clrmainlight: #1F3C88;
--clrmaindark:#070D59;

}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body{
  width: 100vw;
  height: 100vh;
  margin: 0 auto;
  font-size: 16px;
  background-color: var(--clroff);
  font-family: poppins, cursive, sans-serif;
}

.nav {
  height: 10%;
  width: 100%;

}

.login{
  height: 60%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login h1{
  margin: 0 auto;
}

.login p{
  margin: 5px auto 15px;
}

form{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  margin: 0 auto;
}

form img{
width: 4rem;

}

input{
  height: 30px;
  margin: 5px;
  width: 100%;
  /* border-radius: 2px; */
}

#lgsubmit{
  background-color: var(--clrmainlight);
  color: var(--clroff);
}

/* Profile page styling */
.profile {
  height: 100%;
  width: 100%;
  padding: 15px;
  display: none;
}

.deco{
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.disscreen{
  display: flex;
  margin-top: -10px;
}

.pro-icons{
  display: flex;
  justify-content: space-between;
  width: 20%;
}

.proh1{
  margin-left: 15px;
}

.passport{
  background-color: var(--clrmainlight);
  width: 95%;
  height: 150px;
  margin: auto;
  padding: 10px;
  border-radius: 5px;
  color: var(--clrblurwyt);
}

.btns{
  margin: 10px 0;
}

.btns button{
  width: 120px;
  height: 30px;
  border-radius: 5px;
  border: none;
}

.pgbtntrs{
  background-color: var(--clroff);
  color: black;
  font-weight: 600;
  margin-right: 10px;
}

.pgbtnlgo{
  background-color: var(--clracent);
  color: var(--clroff);
}

.dbicons{
  margin: 30px 10px 20px;
text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  color: var(--clroff);
  padding: 5px 25px;
}

.dbicon{
  background-color: var(--clrmainlight);
  padding: 20px;
  border-radius: 5px;
  transition: 0.5s;
  cursor: pointer;
}

.dbicon:hover{
  background-color: var(--clracent);
  transform: scale(1.05);
}

.dbicon i{
  font-size: 50px;
}

/* Transaction Page styling */

.transact {
  height: 100%;
  width: 100%;
  padding: 10px;
  display: none;
}

.trsdisamt{
  font-size: 1.6rem;
  /* margin: 10px; */
  font-family: serif;
  font-weight: 600;
  background-color: var(--clrmainlight);
  padding: 10px;
  color: var(--clroff);
  border-radius: 3px;
  width: 85%;
  margin-left: 25px;
}

.bind{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 10px auto;
}

.trsword{
  font-size: 1rem;
  margin-left: 25px;
}

.amtdiv{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 5px;
  width: 100%;
}

#trsamtbox{
width: 85%;
margin: 5px auto;
padding-left: 5px;
max-width: 400px;
}

.trsbtns{
  margin: 10px;
}

.trsbtns button{
  width: 120px;
  height: 35px;
  border-radius: 5px;
  /* background-color: var(--clrmainlight); */
  color: var(--clroff);
  margin: 10px 5px;
}

.depbtn{
  background-color: green;
}

.witbtn{
  background-color: rgb(252, 31, 31);
}

.trsbtns .bakbtn{
  /* background-color: var(--clrmainlight); */
color: black;
border: 2px solid var(--clrmaindark);
}

.title{
  border-bottom:1px solid black;
  display: flex;
  padding: 0 5px;
  justify-content: space-between;
  width: 100%;
}

.title span{
  width: 25%;

}


.footer {
  height: 10%;
  width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
  font-size: 0.7rem;
}


/*Media query ------------------------------------------------ */
@media (max-width:576px){
.dbicons{
  grid-template-columns: 1fr 1fr;

}

}
