* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body {
    background-image: url(../images/background.png);
    overflow-x: hidden;
    width: 100%;

}

.contact-form{
    background-image: url('../images/contact-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    
    
}

.form-container {
    width: 100%;
    max-width: 600px;
}



.form-container input,
.form-container select {
    border: 2px solid #5c2d2d;
    border-radius: 5px;
    padding: 8px;
    width: 100%;
    margin-bottom: 15px;
    font-size: 1rem;
}

.form-container select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-size: 12px;
}

