/* styles.css */

body { font-family: 'Inter', sans-serif; background-color: #FDFCF8; color: #333; }
h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; }
.bg-beige { background-color: #FDFCF8; }
.btn-outline {
    border: 1px solid #d2d2d2;
    transition: all 0.4s ease;
}

#inicio {
    background-image: linear-gradient(rgba(5, 7, 12, 0.55), rgba(5, 7, 12, 0.55)),
    url('images/mt..png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.581), rgba(0, 0, 0, 0.542)),
        url('images/Pintando Potestad.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white; /* Asegura que el texto sea visible */
    padding: 20px; /* Espaciado para el contenido */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* Sombra para mejorar la legibilidad */
}

body { font-family: 'Inter', sans-serif; background-color: #FDFCF8; color: #333; }
h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; }
.bg-beige { background-color: #FDFCF8; }
.btn-outline {
  border: 1px solid #c2bfbf;
  transition: all 0.4s ease;
}
.btn-outline:hover {
  background-color: #333;
  color: #FDFCF8;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 60;
}

.modal-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  width: min(480px, 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.modal-input {
  margin-top: 0.35rem;
  width: 100%;
  border: 1px solid #d2d2d2;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  outline: none;
  background: #fdfcf8;
}

.modal-input:focus {
  border-color: #333;
}

.modal-status {
  font-size: 0.9rem;
  margin-top: 0.25rem;
  min-height: 1rem;
}

.modal-status.is-ok {
  color: #1f7a1f;
}

.modal-status.is-error {
  color: #b30000;
}