*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Sanchez", serif;
}

.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(33,33,33,0.0),rgba(58,58,58,0.0)),url(5.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img{
    width: 150px;
}

.container{
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

.container form{
    width: 500px;
    height: 600px;
    display: flex;
    justify-content: center;
    box-shadow: 20px 20px 50px rgb(255, 255, 255, .3);
    border-radius: 15px;
    background: rgba(255,165,0,.5);
    backdrop-filter: blur(5px);
    flex-wrap: wrap;
}

.container form h1{
    color: #fff;
    font-weight: 500;
    margin-top: 20px;
    width: 500px;
    text-align: center;
}

.container form input{
    width: 240px;
    height: 40px;
    padding-left: 10px;
    outline: none;
    border: none;
    font-size: 20px;
    margin-bottom: 10px;
    background: none;
    border-bottom: 2px solid #fff;
}

.container form input::placeholder{
    color: #fff;
}

.container form h4{
    color: #000;
    font-weight: 300;
    font-size: 20px;
    width: 500px;
    padding: 10px;
    margin-top: 20px;
}

.container form textarea{
    background: none;
    border: none;
    border-bottom: 2px solid #fff;
    color: #000;
    font-weight: 200;
    font-size: 18px;
    padding: 10px;
    outline: none;
    min-width: 490px;
    max-width: 490px;
    min-height: 80px;
    max-height: 80px;
}

textarea::-webkit-scrollbar-thumb{
    background-color: rgba(56, 56, 56, 0.713)
}

.container form #button{
    border: none;
    background: #fff;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 20px;
    color: #383838;
    width: 100px;
    padding: 0;
    margin-right: 300px;
    margin-bottom: 30px;
    transition: 0.5s;
}

.container form #button:hover{
    opacity: 0.7;
}

p{
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    margin: 10px 0;
}

h1{
    font-size: 50px;
}