
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,50,0.8),rgba(0,0,50,0.8)),url('IMG-20231230-WA0005.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
   
}
.heading{
    width:100%;
    height:70px;
    background:transparent;
    display: flex;
    background-color: white;
    padding: 3px;
    border-radius: 5%;
}
.logos{
    margin: 7px;
}
.logos img{
    width: 50%;
    aspect-ratio: 3/2;
    
    z-index:2;

}
.form_box{
width: 90%;
max-width: 450px;
position: absolute;
top:50%;
left: 50%;
transform: translate(-50%,-50%);
background: #fff;
padding:50px 60px 70px;
text-align: center;
}
.form_box h1{
    font-size: 30px;
    font-family: 'Merriweather', serif;
    margin-bottom: 60px;
    color: #3c00a0;
    position: relative;
}
.form_box h1::after{
    content: '';
    width: 30px;
    height: 4px;
    border-radius: 3px;
    background: #3c00a0;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translate(-50%);
}
.input_field{
    background: #eaeaea;
    margin:15px 0;
    border-radius: 4px;
    display: flex;
    align-items: center;

}
input{
    width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 18px 15px;
}
.input_field ion-icon {
    margin-left: 15px;
    color:#999;

}
form p{
    text-align: left;
    font-size: 13px;

}
form p a{
    text-decoration: none;
    color: #3c00a0;
}
.submit_btn{
    
    background: #775ba5;
    border-radius: 10px;
    margin-top: 10px;
}