*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}
body{
    background: linear-gradient(to right bottom, #5596f8, #9c49c2);
}
.parrent-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 140px 130px;
}
.container{
    width: 100%;
    display: flex;
background-color:rgb(240, 238, 238);
}

.logo{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#logo-img{
    width: 100%;
    object-fit: contain;
}
.had1{
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: absolute;
    padding: 0px 30px;
    gap: 20px;
    top: 20px;
}
.head1{
    color: rgb(85, 83, 83);
    font-size: 35px;
    font-weight:800;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.signin-form{
    width: 80%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: white;
padding: 5px 30px;
}
#signin-form{
    width: 100%;
    line-height: 60px;
    display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.h6{
    text-align: center;
    font-size: large;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color:#3769f5 ;
}
.pera{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
}
.email{
    width: 100%;
    display: flex;
    align-items: center;
    background-color: rgba(235, 229, 229, 0.918);
    padding: 7px 20px;
    border-radius: 20px;
}
#input-email{
    width: 100%;
    border: none;
    outline: none;
    padding: 0px 10px;
    background-color: rgba(235, 229, 229, 0.918);
}
#inputPassword{
    width: 100%;
    border: none;
    outline: none;
    padding: 0px 10px;
    background-color: rgba(235, 229, 229, 0.918);
}
.password{
    margin-top: 20px;
    width: 100%;
    display: flex;
    background-color: rgba(235, 229, 229, 0.918);
    padding: 7px 20px;
    border-radius: 20px;
}
.pasword{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.checkBox{
    display: flex;
    align-items:center ;
    gap: 7px;
}
#chek{
    font-size:11px;
    cursor: pointer;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

#login-btn{
    padding: 5px 30px;
    border-radius: 20px;
    border: none;
    background: linear-gradient(to left bottom, #5596f8, #9c49c2);   
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: small;
    font-weight: 500;
    color: white;
    text-align: center;
    cursor: pointer;
box-shadow: 1px 1px 1px 1px #9c49c2;
}
#login-btn :active{
    box-shadow: 0px 0px 0px 0px ;
    transform: translateY(1px);
}

#page{
    font-size: medium;
    color: #5596f8;
}
@media only screen and (max-width:1035px){
    .parrent-container{
        padding: 140px 70px;
    }
}
@media only screen and (max-width:915px) {
    .parrent-container{
        padding: 120px 60px;
    }
    .had1{
        top: 10px;
    }
    .head1{
        font-size: 28px;
    }
   
}
@media only screen and (max-width:765px) {
    .parrent-container{
        padding: 100px 90px;
    }
    .container{
        border-radius: 20px;
    }
    .logo{
        display: none;
    }
    .signin-form{
        width: 100%;
        border-radius: 20px;
        padding: 5px 60px;
    }
   
}
@media only screen and (max-width:609px) {
    .parrent-container{
        padding: 100px 70px;
    }
    .signin-form{
        padding: 5px 40px;
    }
   
}
@media only screen and (max-width:476px) {
    .parrent-container{
        padding: 100px 30px;
    }
    .signin-form{
        padding: 5px 20px;
    }
    #signin-form{
        width: 100%;
        padding: 1px 10px;
    }
}
@media only screen and (max-width:355px) {
    .parrent-container{
        padding: 100px 20px;
    }
    #page{
        font-size: small;
    }
}