* {
  margin: 0;
  padding: 0;
}
.banner{
    background-image: url(assets/banner/login.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    position: relative;
}
.form{
    position: absolute;
    height: 800px;
    width: 70pc;
    background-color: white;
    margin-top: 5%;
    margin-left: 12%;
    border-radius: 10px;
    box-shadow:  5px 5px 0 black;
    display: flex;
    gap: 20px;
}
.content{
    padding-left: 8%;
}
.img{
    padding-top: 200px;
    padding-left: 80px;
}
.img img{
    height: 400px;
    width: 300px;
    border-radius: 20px;
}
.content input{
    
    padding-left: 100px;
    margin-top:5px ;
    height: 35px;
    width: 25pc;
    border-radius: 5px;
}
.inp{
    padding-top: 20px;
}
.btn{
    padding-top: 30px;
    padding-left: 10%;
}
.bn{
    height: 40px;
    width: 80%;
    border-radius: 10px;
    font-size: 25px;
    background-color: rgb(0, 0, 255);
    color: white;
}
.bn:hover{
    background-color: red;
}
.bn1{
    height: 40px;
    width: 80%;
    border-radius: 10px;
    font-size: 25px;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}
@media(max-width:700px){
    .img{
        display: none;
    }
    .banner{
        background-image: none;
    }
    .content input{
    justify-content: center;
    padding-left: 10px;
    margin-left: 20px;
    margin-top:5px ;
    height: 30px;
    width: 15pc;
    border-radius: 5px;
    }
    .form{
    position: absolute;
    height: 600px;
    width: 20pc;
    background-color: white;
    margin-top: 25%;
    margin-left: 12%;
    border-radius: 10px;
    box-shadow:  5px 5px 5px 5px rgb(199, 12, 12);
    display: flex;
    gap: 20px;
}
}