.main-content {
    flex-direction: row;

}

/* Fieldsets */
fieldset {
    border: 1px solid #eeeeee25;
    margin: 0;
    padding: 15px;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 30px;
}

fieldset legend {
    padding: 0 10px;
    color: #ffdb79b6;
}

/* Grupos */
.form-group {
    margin-bottom: 15px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;

}

.label-group {
    display: flex;
    flex-direction: column;
    min-width: 180px;
    flex: 1;
    margin-bottom: 15px;
}

label {
    margin-bottom: 6px;
    color: #ececec;
    width: 100%;
}

input,
textarea,
select {
    padding: 10px;
    border-radius: 8px;
    border: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: rgba(184, 184, 184, 0.15);
    color: white;
}

input:focus,
textarea:focus, select:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.4);
}

small{
    margin-top: 10px;
}