* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #f3f5f9;
    color: #172033;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

a {
    color: inherit;
    text-decoration: none;
}

label {
    display: grid;
    gap: 6px;
    margin-bottom: 12px;
    font-weight: 700;
}

input {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    padding: 10px 12px;
    font: inherit;
}

select {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    padding: 10px 12px;
    background: #ffffff;
    font: inherit;
}

textarea {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    padding: 10px 12px;
    font: inherit;
}

button,
.boton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    padding: 10px 14px;
    background: #0f62fe;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

button {
    width: 100%;
}

.form-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.form-actions > button,
.form-actions > .boton {
    flex: 0 0 auto;
    width: auto !important;
}

.alerta {
    margin-bottom: 10px;
    border-radius: 12px;
    padding: 10px 12px;
    background: #fff1f3;
    color: #b42318;
}

.alerta.exito {
    background: #ecfdf3;
    color: #027a48;
}

.icon-fallback {
    display: inline-flex;
}

.fa-loaded .icon-fallback {
    display: none;
}

.fa-unavailable .fa-solid {
    display: none;
}
