*{
    margin: 0;
    padding: 0;
    font-family: Roboto;
    overflow-x: hidden;
}

.section-6{
    margin: 150px auto 50px auto;
    width: 80vw;
    height: 450px;
    box-shadow: 0px 4px 4px 2px #919090;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-content: space-evenly;
}

.s6-c1{
    height: 90%;
    width: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    left: 0;
    border-radius: 4px;
}

.s6-c2{
    height: 100%;
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.form{
    width: 100%;

    margin: 0 auto;

}

.form-group {
    display: inline-block;
    width: 48%;
    margin-bottom: 15px;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.submit-button {
    background-color: #0a0a23;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.submit-button:hover {
    cursor: pointer;
}


@media only screen and (max-width: 900px){
    .section-6{
        flex-direction: column;
        height: auto;
    }

    .s6-c1{
        width: 100%;
        height: 300px;
    }

    .s6-c2{
        width: 100%;
        padding: 20px;
        gap: 30px;
    }
    input{
        width: 100%;
    }

    .form-group{
        width: 100%;
    }
}