.content.form {
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, .7);
    padding: 1rem;
    border-radius: var(--rounded-edge);
    color: var(--unraf-gray);
}

.form-content{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.form-content .imagen{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem;
}

.form-content .form-body {
    width: auto;
    display: flex;
    flex-flow: column wrap;
    overflow: wrap;
    gap: .5rem;
}

.form-body {
    padding: 1rem;
}

.form-field {
    width: 100%;
    border-radius: var(--rounded-edge-sm);
    border: 1px solid var(--unraf-gray-transp);
    padding: .2rem;
    margin: .2rem;
    resize: none;
    overflow: auto;
}

.form-field.area {
    min-height: 10rem;
}

.form-field.files {
    border: none;
}

.form-field:focus {
    outline: solid 2px var(--unraf-cyan);
}

.form-field.files:focus {
    outline: none;
}

.form-footer {
    width: 100%;
    display: flex;
    gap: .5rem;
    justify-content: flex-end;
    align-items: center;
}

.form-content .imagen img{
    width: 8rem;
}

@media(max-width: 600px) {
    .form-content {
        flex-direction: column;
    }
    
}