html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


body {
    background: #f4f6f9;
}

/* CARD PRINCIPAL */
.saas-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* HEADER */
.saas-header {
    background: white;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    font-size: 15px;
    padding: 15px 18px;
}

/* INPUTS */
.saas-input {
    border-radius: 10px;
    padding: 10px 12px;
}

/* BOTÓN */
.saas-btn {
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
}

/* GRID SISTEMAS */
.system-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

/* CARD SISTEMA */
.system-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

    .system-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.08);
        border-color: #0d6efd;
    }

    /* OCULTAR CHECKBOX */
    .system-card input {
        transform: scale(1.2);
    }

/* TEXTO */
.system-title {
    font-weight: 600;
    font-size: 14px;
}

.system-sub {
    font-size: 12px;
    color: #6c757d;
}