.background{
    background-image: url('/images/thank.jpg');
    background-size: cover;
    background-position: center;
    height: 120vh;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
form{
    background-color: rgba(0, 0, 0, 0.7); 
    color: white;
    width: 500px;
    height: 500px;
    text-align: center; 
    border-radius: 20px; 
}
h1{
    padding: 20px;
}

h3{
    margin-bottom: 30px;
}

label{
    color: #ff7a3b;
    font-size: 25px;
    margin-bottom: 5px;
}
input, textarea, select{
    margin-bottom: 15px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 200px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 16px;
}
textarea {
    resize: none;
    height: 80px;
    width: 350px;
    
}
option{
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 5px;
    margin-bottom: 5px;
}
input::placeholder ,textarea::placeholder {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}
button {
    background-color: rgba(0, 0, 0, 0.7);
    color:  #ff7a3b;
    font-size: 18px;
    cursor: pointer;
    width: 150px;
    height: 50px;
    border: none;
    border-radius: 100px;
    margin-top: 20px;
    border: 2px solid #ff7a3b;
}
button:hover, input:hover, textarea:hover, select:hover{
    background-color:#ff7a3b;
    color: white;
}

