body{
    margin: 0;
    background-color: #f9f9f9;
    height: auto;
}
/* header starts */
.header{
    /* display: flex; */
	width: 100%;
	height: 90px;
	/* justify-content: space-between; */
	align-items: center;
	background: #fff;
    padding-left: 125px;
    padding-bottom:35px;
}
.header h3 a{
    text-decoration: none;
    color: #082B37;
    cursor: pointer;
}
.header button a{
    text-decoration: none;
    color: #f9f9f9;
    cursor: pointer;
}
/* header ends */
section .forms{
    display: flex;
    justify-content: space-evenly;
}
section .forms .form1{
    width: 35%;
    margin-top: 5rem;
}
section .forms .form1 .action_btn a{
    text-decoration: none;
    color: #f9f9f9;
}
section .forms .form1 .btn1{
    display: none;
}
section .forms .span{
    display: flex;
    /* justify-content: space-between; */
    gap: 40px;
}
.login {
    margin-bottom: 5px;
    border: none;
    height: 45px;
    width: 150px;
    color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login a {
    text-decoration: none;
    color: #f9f9f9;
    text-align: center;
    width: 100%;
    height: 100%;
    margin-top: 5px;
}
.action_btn{
    text-decoration: none;
    align-items: center;
    background: linear-gradient(to right, #92ffc0, #002661);
    color: #f9f9f9;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    font-size: small;
    border-radius: 5px;
    cursor: pointer;
    transition: scale 0.2 ease;
}
.action_btn:hover{
    scale: 1.05;
    color: #f9f9f9;
}
.action_btn:active{
    scale: 0.95;
}

@media screen and (max-width: 1024px) and (min-width: 768px){
    .container img{
        display: none;
    }
    .container .forms .form1{
        align-items: center;
        justify-content: center;
        width: 100%;
    }
}
@media screen and (max-width: 767px){
/*     header{
        display: none !important;
      } */
	header .header button {
        display: none;
    }
    header .header {
        align-items: center !important;
        justify-content: center !important;
        background: linear-gradient(to right, #92ffc0, #002661);
        height: fit-content !important;
    }
    header .header h3 a{
        color: #f9f9f9;
    }

    header button{
      display: none;
    }
      .container img{
          display: none;
      }
      .container .forms .form1{
          align-items: center;
          justify-content: center;
          width: 100%;
      }
      section .forms .form1 .btn1{
          display: block;
      }
      section{
          margin-top: 1rem;
      }
}
