@font-face {
    font-family: "ElMessiri";
    src: url(../Fonts/El\ Messiri\ Regular.otf);
  }

body{
    background-color: #FDCFCF !important;
}
.main{
    width: 70%;
    height: 85vh;
    background-color: rgb(255, 255, 255);
}
.main .photo {width: 50%;}
.main .photo img{
    width: 100%;
    height: 85vh;
}
.form {
    display: flex;
    width: 50%;
}
.form h1{
    font-family: "ElMessiri";
    color: #FF9A9C;
    font-weight: 500;
    font-size: 3rem;
}
form .input label{
    width: 10px;
    height:10px;
    background-color: #FF9A9C;
    border-radius: 50%;
}
.input{
    margin-bottom: 20px;
}
.input input{
    border: none;
    border-radius: 20px;
    padding: .75rem 2.5rem;
    background-color: #F7F7F7;
}
.input input::placeholder{
    color: #868383;
    font-size: 1rem;
    font-weight: 400;
    font-family: Arial, Helvetica, sans-serif;
}
form .submit{
    border: none;
    background-color: #FF9A9C;
    padding: .5rem 1.5rem;
    border-radius: 20px;
}
form .submit a{
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.25rem;
    font-family: Arial, Helvetica, sans-serif;

}
@keyframes chack {
    0% {
        transform: translateX(-6px);
    }
    20% {
        transform: translateX(6px);
    }
    40% {
        transform: translateX(-6px);
    }
    60% {
        transform: translateX(6px);
    }
    80% {
        transform: translateX(-6px);
    }
    100% {
        transform: translateX(6px);
    }
}

form .submit:hover {
    animation: chack 1s ease-in-out infinite;
    cursor: pointer;
}
form p{
    font-size: .9rem;
    color: #8a8a8a;
    margin-top: 20px;
}
form p a{
    font-weight: 700;
}

@media(max-width:992px){
    .main{
        width: 90%;
        height: auto;
        flex-wrap: wrap;
    }
}
@media (max-width: 767px) {
  
    .main{
        width: 95%;
    }
    .main .photo{
      width: 100%;
      padding-right: 0;
     }
     .main .photo img{
        width: 80%;
        
     }
  
    .form {
      width: 100%;
      padding: 0px 15px 70px; }
  
    }

    #login{
        display: none;
    }

    .alter{
        width: 350px;
        height: 150px;
        background-color: #FF9A9C;
        z-index: 1;
        position: absolute;
        border-radius: 10px;
        
    }
    
    .alter i{
        font-size: 25px;
        cursor: pointer;
    }