/* ==========================================================
   BOTONES
========================================================== */

.btn {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 800;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--cyan-500);
    color: var(--blue-950);
    box-shadow: 0 10px 24px rgba(25, 183, 242, 0.24);
}

.btn-secondary {
    color: white;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.34);
}

/* ==========================================================
   ESTADOS
========================================================== */

.status {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
}

.official {
    background: #e8f7ec;
    color: #268746;
}

.provisional {
    background: #fff6d7;
    color: #9c7a00;
}

.upcoming {
    background: #edf4ff;
    color: var(--blue-700);
}

/* ==========================================================
   FORMULARIOS
========================================================== */

input,
select,
button {
    font-family: inherit;
}

input,
select {
    outline: none;
}