/* CMR - estilo moderno azul #005baa + blanco + gris claro */

.cmr-form-container {
  max-width: 880px;
  margin: 28px auto;
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid #eef2f6;
}

/* TITULOS */
.cmr-form-container h2 { text-align:center; color:#00396b; margin-bottom:12px; font-size:24px; }
.cmr-section-title { color:#005baa; font-weight:700; margin:12px 0; }

/* GRUPOS */
.cmr-group { margin-bottom:14px; display:block; }
.cmr-group input[type="text"],
.cmr-group input[type="email"],
.cmr-group input[type="number"],
.cmr-group input[type="date"],
.cmr-group select,
.cmr-group textarea {
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #d9dfea;
  background:#fbfdff;
  font-size:15px;
  box-sizing:border-box;
  transition: box-shadow .18s ease, border-color .18s ease;
}
.cmr-group textarea { min-height:110px; resize:vertical; }

.cmr-group input:focus,
.cmr-group select:focus,
.cmr-group textarea:focus {
  outline:none;
  border-color:#7fb3e6;
  box-shadow:0 4px 14px rgba(0,91,170,0.08);
}

/* small text */
.cmr-small-text { font-size:13px; color:#667085; }

/* botones */
.cmr-btn {
  display:inline-block;
  width:100%;
  padding:12px 16px;
  border-radius:10px;
  background:#005baa;
  color:#ffffff;
  border:none;
  font-weight:700;
  cursor:pointer;
  font-size:15px;
  transition: background .12s ease, transform .06s ease;
}
.cmr-btn:hover { background:#004680; transform:translateY(-1px); }
.cmr-btn:active { transform:none; }

.cmr-next-step, .cmr-prev-step { width:100%; margin-bottom:8px; }

/* multi-step */
.form-step { display:none; animation:fadeIn .18s ease; }
.form-step.active { display:block; }

/* subblocks */
.cmr-subblock { margin-left:6px; padding-left:6px; border-left:2px solid #f2f6fb; }

/* file input customization */
.cmr-group input[type="file"] {
  padding:8px;
  border-radius:8px;
  border:1px dashed #cbd5e1;
  background:#fbfdff;
}

/* responsive */
@media (max-width:720px) {
  .cmr-form-container { padding:18px; margin:18px; }
  .cmr-form-container h2 { font-size:20px; }
}

/* small helpers */
.cmr-hidden { display:none !important; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(6px);} to { opacity:1; transform:none; } }

.cmr-form-container p.info {
    text-align: center;
    background: #fff3cd;
    padding: 10px;
    border-left: 4px solid #ffca2c;
    border-radius: 6px;
    margin-bottom: 25px;
    font-size: 15px;
}

.cmr-error {
    border: 2px solid #d32f2f !important;
    background: #fff5f5;
}

.cmr-alert {
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-weight: 600;
}


.cmr-alert.error {
  background: #fdecea;
  color: #842029;
}

.cmr-alert.success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}



