body{
    margin: 0;
    padding: 0;
}
.loading{
    visibility: hidden;
 position: absolute;
  top: 50%;
  background-color: #3f3b3f8e;
 display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: wheat;
    border-radius: 10px;
    padding: 13px;
   


}
.loader {

    
    border-top: 3px solid blue;
  border-right: 3px solid #eff3ef;
  border-bottom: 3px solid red;
  border-left: 3px solid rgb(240, 16, 184);
  border-radius: 50%;
  height: 20px;
  width: 20px;
  animation: spin 1s linear infinite;
}


@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.header{
    height: 100vh;
    width: 100%;
   background-color: beige;
    position: fixed;
    background-position: center;
    background-size: contain;

    
    
}

.header{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(#FF1493,blue,rgb(247, 3, 173));
}

.container{
    width: 40%;
    height: 70%;
    background-color: #FF1493;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
    justify-content: center;
    color: aliceblue;
    border-radius: 15px;

}
 img{
    height: 120px;
    width: 120px;
    border-radius: 50%;
 }

 form{
    width: 80%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
     align-items: center;
    justify-content: center;
 }
 input{
    width: 70%;
    background-color: rgba(240, 248, 255, 0.404);
    height: 30px;
    border-style: none;
    outline: none;

 }

 form button{
     width: 70%;
    background-color: rgba(10, 130, 236, 0.651);
    height: 30px;
    border-style: none;
    outline: none;
    color: #e6d5de;


 }

 .down_div{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: right;
 }
 .down_div button{
    margin-right: -60%;
    height: 35px;
    outline: none;
    background-color: #e6d5de;
    color: #FF1493;
    border-radius: 5px;
    border-style: none;
 }
 ::placeholder{
    color: #e6d5de;
    margin-left: 10px;
 }

 @media only screen and (max-width: 767px){
    .container{
        top: 50%;
        width: 80%;
        height: 45%;
    }

    img{
        width: 90px;
        height: 90px;
       position: absolute;
        margin-top: -300px;
    }
    form{
        width: 100%;
    }
    p{
        font-size: 10px;
        text-align: center;
    }
    .loading{
        top: 27%;
    }
 }