
.full-form{
    width: 100%; height: 100%;
    padding: 50px;

    display: flex;
    z-index: 4;
}

.contact-form {
    flex: 1;
    z-index: 1;

    width: 100%;
    padding: 40px;
    
    background: var(--bg-primary);

    label {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
        color: var(--txt-color-primary);
    }
}

.form-thumbnail{
    flex: 1;
    background: url('../img/form_thumbnail.jpg') 50% 50%/ cover;
}

.form-display{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

form input,
form select,
form textarea,
form button{
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;

    border: 1px solid var(--bg-tertiary);
    border-radius: 20px;
}

.submit-btn{
    background-color: var(--bg-primary);
    border: 1px solid var(--bg-tertiary);
    cursor: pointer;

    transition: background-color 0.3s ease;
    &:hover {
        background-color: var(--bg-tertiary);
        color: var(--description-color);
    }
}

.first-layer{
    width: 100%;
    display: flex; gap: 20px;
    flex-wrap: wrap;
    div {
        flex: 1;
        min-width: 200px;
    }
}

.select-pays{
    width: 100%;
}
#pays{
    background-color: var(--bg-tertiary);
    color: var(--description-color);
    border-radius: 15px;
}

.form-question{
    width: 100%;
    padding: 15px;

    display: flex; flex-wrap: wrap;
    justify-content: space-around; align-items: center;
    gap: 10px;

    border: 1px solid var(--bg-tertiary);
    border-radius: 4px;

    legend {
        color: var(--txt-color-primary);
    }
    label{
        display: flex;
        input{
            flex: 1;
            height: 20px;
        }
        p{
            height: 20px;
            padding-left: 10px;

            display: flex;
            align-items: center;
        }
    }
}

.bottom-layer{
    width: 100%;

    display: flex; flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: wrap;

    div:nth-child(1){
        flex: 1;
    }
    div:nth-child(2){
        flex: 1;
    }
}

textarea {
    resize: none;
}

@media screen and (max-width: 1000px) {
    .full-form{
        height: 200vh;
        flex-direction: column;
    }
}
@media screen and (max-width: 800px) {
    .full-form{
        width: 100%;
        padding: 10px;
    }
    .contact-form{
        padding: 0;
    }
}