.container_form {
    width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    box-shadow: 1px 0px 1.2px 0px #e3e3e3;
    border-radius: 3px;
    padding: 1em;
}

.container_form h1 {
    font-family: 'open_sansregular';
    font-size: 2.3em;
    color: #00dae0;
    border-bottom: 1px #f0eded solid;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.form_grupo {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.form_grupo .legenda {
    width: 100%;
    float: left;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: bold;
}

.submit {
    width: 100%;
    float: left;
}

.submit_btn {
    float: left;
    display: block;
    padding: 5px 30px;
    border: none;
    outline: none;
    background-color: #6fcffb;
    color: #fff;
    text-shadow: 0 0 5px rgb(0, 0, 0);
    font-size: 25px;
    font-family: 'open_sansregular';
    border-radius: 6px;
    margin: 20px auto;
    cursor: pointer;
    transition: all 0.3s;
}

.submit_btn:hover {
    background-color: #444444;
    transform: scale(1.03);
}

.dropdown {
    display: block;
    margin: 0 auto;
    font-size: 16px;
    font-family: inherit;
    color: #222222;
    border-radius: 4px;
    border: 1px #f2f2f2 solid;
    background: #fdfdfd;
    outline: none;
    padding-left: 10px;
    width: 100%;
}

.form_input {
    font-size: 16px;
    font-family: inherit;
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px #f2f2f2 solid;
    background: #fdfdfd;
    outline: none;
    width: 100%;
    transition: all 0.3s;
}

.form_message,
.form_message .message_input {
    width: 100%;
    float: left;
}

.form_message_label {
    width: 100%;
    float: left;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: bold;
}

.radio_label,
.check_label {
    float: left;
    width: 100%;
    padding-left: 30px;
    cursor: pointer;
    margin-bottom: 8px;
}

.radio_new_btn {
    position: absolute;
    left: 0;
    transform: translateY(3px);
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 0.2em solid #4c4c4c;
}

.radio_new_btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #6fcffb;
    visibility: hidden;
}

.check_new_btn {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    border: 0.2em solid #4c4c4c;
}

.check_new_btn::after {
    content: "";
    height: 8px;
    width: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #6fcffb;
    visibility: hidden;
}

.form_new_input {
    display: none;
}

.form_new_input:checked~.radio_label .radio_new_btn::after,
.form_new_input:checked~.check_label .check_new_btn::after {
    visibility: visible;
}

.form_new_input:checked~.radio_label,
.form_new_input:checked~.check_label {
    color: #6fcffb;
}

.mkr-feedback {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-weight: bold;
}

.mkr-sucesso {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mkr-erro {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Upload de foto estilo avatar */
#foto-perfil-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.foto-upload-label {
    width: 140px;
    height: 140px;
    background: #f3f3f3 url('https://cdn-icons-png.flaticon.com/512/847/847969.png') no-repeat center;
    background-size: 50px;
    border: 2px dashed #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.foto-upload-label:hover {
    border-color: #4a90e2;
    background-color: #eef6ff;
}

/* Pré-visualização */
#foto-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

#foto_perfil {
    display: none;
}