#section_1 {
    background-image: url("../assets/paris-5397889.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 25px 15px;
}

#section_1 .container {
    background-color: var(--white);
    border-radius: 10px;
    max-width: 700px;
    padding: 25px 15px;
    position: relative;
    margin: auto;
}

#section_1 h1 {
    text-align: center;
    margin-bottom: 20px;
}

form{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

form h2{
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.small{
    width: 45%;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    height: 100px;
}

.form-group select{
    width: 100%;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 10px;
    color: var(--black);
    border: 2px solid var(--black);;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition-duration: 0.5s;
}

.submit-btn:hover {
    border-radius: 50px;
    font-weight: bold;
}

input:focus, textarea:focus {
    outline: none;
}