﻿.nome-txt {
    width: 100%;
}

.contact-dlg-body {
    display: flex;
    gap: 20px;
    font-size: var(--medium-text-size);
}

.form-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
    align-items: flex-end;
}

.editor-div {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
}

    .editor-div input {
        width: calc(100% - 20px);
    }

    .full-editor-div textarea {
        height: 270px;
    }

    .div-btn {
        display: flex; 
        gap: 20px;
    }

.cod-img-div {
    border: 1px solid var(--gray-1);
    padding: 6px;
    background-color: var(--white);
}

.cod-div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sep {
    width: 100%;
    height: 1px;
    background: var(--green);
    margin: 40px 0px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.error-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    border-top: 2px solid var(--red);
    background: var(--sub-white);
    margin-bottom: 30px;
}

    .error-container h2, .error-container p, .error-container ul {
        margin: 0px;
    }

a.error-msg {
    cursor: pointer;
    color: var(--red);
    text-decoration: underline;
}

.err-div {
    color: var(--red);
    font-size: var(--small-text-size);
}

.mandatory {
    color: var(--red);
    font-weight: normal !important;
}


@media only screen and (max-width: 650px) {
    .contact-dlg-body {
        flex-wrap: wrap;
    }

    .form-side {
        width: 100%;
        padding-bottom: 15px;
    }
}
