/* resetting css */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: tahoma;
}

.container{
    display: flex;
    flex-direction: row;
    
}
/* image & text path */

.select-all{
    background-image: url(../img/image\ copy.png);
    height: 100vh;
    width: 40vw;
    background-position: center;
    background-size: cover;
    padding: 30px;
    color: white;

}

.select-all h2{
    font-size: 40px;
    padding-top: 200px;
    padding-left: 30px;
}

.select-all p{
    padding-top: 10px;
    font-size: 20px;
    padding-left: 30px;
}
.space{
    padding-top: 150px;
    font-size: 15px;
}
/* form path */
.open-all{
display: flex;
justify-content: center;
align-items: center;
padding: 30px 80px;
background-color: #fff;
width: 55%;
}

form h2{
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
form p{
    text-align: center;
}
form p a{
    margin-left: 3px;
    text-decoration: none;
    color: blue;
}

.first{
    display: flex;
    gap: 3rem;
    padding-top: 40px;
    padding-bottom: 20px;
    
}

.first input[type=text]{
    width: 250px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid;
    padding: 10px 10px;
    outline: none;

}
input[type=email]{
    width: 100%;
    height: 40px;
    border: 1px solid;
    border-radius: 5px;
     padding: 10px 10px;
    outline: none;

}
input[type=text]{
      width: 100%;
    height: 40px;
    border: 1px solid;
    border-radius: 5px;
     padding: 10px 10px;
    outline: none;

}
input[type=password]{
     width: 100%;
    height: 40px;
    border: 1px solid;
    border-radius: 5px;
     padding: 10px 10px;
    outline: none;

}

input[type=submit],
input[type=radio],
input[type=button]{
    width: 100%;
    height: 45px;
    border-radius: 5px;
    border: none;
    color: white;
    background-color: black;
    cursor: pointer;
    margin-top: 30px;
    transition: background 3s;
}
input[type=submit]:hover,
input[type=radio]:hover,
input[type=button]:hover{
    background-color: rgb(56, 56, 119);
    
}

/* Responsive Design */

@media (max-width:768px){
 .container{
    display: flex;
    flex-direction: column;
    width: 100%;
 }
 .select-all{
    width:100% ;
    height: 270px;
    padding: 10px;
     
 }
 .select-all h2{
    font-size: 25px;
    text-align: left;
padding: 0;    
margin-top: 50px;
margin-bottom: 10px;
   
 }
 .select-all p{
    padding: 0;
 }
 
 .open-all{
    width: 100%;
    text-align: left;
    padding: 0;

 }
 form h2{
    font-size: 25px;
    text-align: center;
    margin-top: 40px;
 }
 form p{
    font-size: 15px;
    text-align: center;
 }
 .first input[type=text]{
    width: 145px;
 }
 
 input[type=email]
 
 {
    width: 339px;
 }
input[type=password]{
     width: 339px;
}
input[type=text]{
     width: 339px;
}
label{
    font-size: 13px;
}
}