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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* ------------------------------- */

/* Brand Colors */
:root {
    --mp-primary: #0ea5e9; /* teal-blue */
    --mp-dark: #0f172a; /* slate-900 */
    --mp-light: #f8fafc; /* slate-50 */
    --mp-accent: #22d3ee; /* cyan */
    --mp-warning: #facc15; /* yellow */
}

/* Typography */
body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: var(--mp-dark);
}

/* Card */
.mp-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

/* Section Title */
.mp-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Icon Header */
.mp-icon-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Buttons */
.btn-mp {
    background-color: var(--mp-primary);
    color: white;
    border-radius: 6px;
}

.btn-mp:hover {
    background-color: var(--mp-accent);
    color: var(--mp-dark);
}
