.background{
    background-image: url('/images/test.jpg');
    background-size: cover;
    background-position: center;
    height: 120vh;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}


.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65%;
}

.form{
    background-color: rgba(0, 0, 0, 0.7); 
    color: white;
    width: 500px;
    height: 500px;
    text-align: center; 
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.form h1 {
    font-size: 36px;
    margin-bottom: 20px;
    margin-top: 50px;
}
img {
    width: 430px;
    height: 500px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}


input,select, textarea {
    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;
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.num,select {
    margin-bottom: 10px;
    width: 420px;
}
option{
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 5px;
    margin-bottom: 5px;
}

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;
}


