* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0, .6), rgba(0,0,0, .6)), url(images/photo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;

}
.login-form{
    width: 400px;
    background: rgba(0,0,0,.7);
    padding: 40px;
    border-radius: 30px;
}
.login-form h2{
    text-align: center;
    color: white;
    margin-bottom: 30px;
    font-size: 35px;
}
.login-form input{
width: 100%;
padding: 15px;
margin-bottom: 15px;
outline: none;
border: none;
transition: .5s;
}
.login-form input:hover{
    border-radius: 30px;
}
.login-form button{
    width: 100%;
    height: 35px;
    outline: none;
    border: none;
    margin-top: 20px;
    cursor:pointer;
    transition: .5s;

}
.login-form button:hover{
    transform:scale(1.1);
        background: rgb(17, 192, 202);
    border-radius: 30px;
    color: white;
    width: 60%;
    margin-left: 20%;
   


}
#sendText{
    margin-top:15px;
    color: white;
    font-size: 30px;
   display: block;
   text-align: center;
}
.logo{
    width: 10%;
    height: auto;
}
.mainPhoto {
    height: 100vh; 
    width: 100vw; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
section{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
section .container{
    margin: 100px;
}
section h2{
    font-size: 60px;
}
section h3{
    font-size: 40px;
    text-align: center;
    
}
h5{
    color: white;
    padding: 5px;
    text-align: center;
}
select{
    width: 120px;
    height: 40px;
    margin: 0 100px;
}