.form-container {
    background: rgba(23, 47, 142, 0.189);
    backdrop-filter: blur(10px);
    width: 100vw;
    padding: 40px 0px 40px 0px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin: auto;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;

}

.imgform {
    width: 100%;
    display: flex;
    justify-content: center;
}

.form-container img {
    max-width: 500px;

    width: 100%;
    height: auto;

    margin-left: 20px;

    opacity: 0.13;
    filter: brightness(111);
}

.form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Alinha os itens do formulário à esquerda */
    max-width: 400px;
    /* Largura máxima do formulário */
    margin-left: 40px;
}

.form-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 20px;
}

.form-label {
    width: 100%;
    margin-top: 10px;
    display: block;
    color: #ffffff;
    font-weight: bold;
    text-align: left;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-radius: 5px;
    /* Raio de borda */
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.612);
    /* Fundo claro e transparente */
    color: #000000;
    /* Cor do texto */
}

.form-textarea {
    resize: none;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    box-shadow: 0 0 5px #006699;
}

.form-button {
    background-color: #006699;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    font-weight: bold;
}

.form-button:hover {
    background-color: #005577;
}

@media screen and (max-width: 950px) {
    .form-container {
        flex-direction: column-reverse;
    }

    .form {
        margin: 0;
    }

    .form-container img {
        max-width: 400px;

        width: 100%;
        height: auto;

        margin-left: 20px;

        opacity: 0.22;
        filter: brightness(111);
        display: none;
    }

}