/* Forms */
.side-form {
    width: fit-content;
    min-width: 50%;
}

.actions {
    display: flex;
    gap: 15px;
}

/* Campos */
.field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    width: 100%;
}

.field label {
    font-size: 0.85rem;
    color: #374151;
    text-align: left
}

.field input,
.field textarea,
.field select {
    padding: 0.7rem;
    border-radius: 6px;
    border: 1px solid #c7d2fe;
    font-size: 0.95rem;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: #1e3a8a;
}

.field-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.btn {
    margin-top: 1rem;
}

.subtitle {
    color: #4b5563;
    line-height: 1.5;
}

button.btn {
    all: unset;
    /* remove estilo default do browser */
    display: inline-block;
    text-align: center;
    padding: var(--btn-padding);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

/* Tamanhos */
.full {
    width: 100%;
}

.half {
    width: 50%; 
}

.third {
    width: 33%; 
}

.fourth {
    width: 25%; 
}

/* Divisórias */

.section-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: var(--base-color);
    font-size: 0.9rem;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--base-color);
}

.section-divider::before {
    margin-right: 1rem;
}

.section-divider::after {
    margin-left: 1rem;
}