body {
    font-family: 'Inter', sans-serif;
}

/* ------------------
   GENERAL FORM WRAPPER
------------------- */
.form-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
}

/* ------------------
   DARK FORM SECTION
------------------- */
.dark-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 0 20px #2272ff40;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

.dark-section h1 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2272FF;
    text-align: center;
}

.dark-section label {
    font-weight: bold;
    margin: 10px 0 4px;
    display: block;
    color: white;
}

.dark-section input[type="text"],
.dark-section input[type="email"],
.dark-section input[type="password"],
.dark-section input[type="tel"],
.dark-section input[type="number"],
.dark-section input[type="date"],
.dark-section input[type="time"],
.dark-section select,
.dark-section textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border-radius: 6px;
    border: 1px solid #444;
    background-color: #2a2a2a;
    color: white;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.dark-section textarea {
    resize: vertical;
}

.dark-section button {
    background-color: #2272FF;
    color: white;
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    width: 100%;
    transition: background 0.3s;
}

.dark-section button:hover {
    background-color: #1a5ed6;
}

/* ------------------
   BACK BUTTON LINK
------------------- */
a.button-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: transparent;
    color: #2272FF;
    border: 2px solid #2272FF;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

a.button-link:hover {
    background-color: #2272FF;
    color: white;
}

/* ------------------
   FLASH MESSAGES
------------------- */
#flash-message-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 100%;
    text-align: center;
}

.flash {
    padding: 12px 20px;
    margin: 15px auto;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    max-width: 500px;
    text-align: center;
    backdrop-filter: blur(4px);
    background-color: rgba(40, 40, 40, 0.85);
    color: #f1f1f1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    transition: opacity 0.5s ease;
}

.flash-success::before { content: "✔ "; color: #2ecc71; }
.flash-danger::before  { content: "✖ "; color: #e74c3c; }
.flash-warning::before { content: "⚠ "; color: #f1c40f; }
.flash-info::before    { content: "ℹ "; color: #3498db; }

.flash-danger  { border-left: 4px solid #ff0909; }
.flash-warning { border-left: 4px solid #ffd700; }
.flash-success { border-left: 4px solid #33cc33; }

/* ------------------
   TITULOS SECUNDARIOS
------------------- */
.h3Class {
    font-size: 18px;
    margin: 10px;
    color: #2273ffb4;
    text-align: center;
}

/* ------------------
   RESPONSIVE
------------------- */
@media (max-width: 480px) {
    .dark-section {
        padding: 20px;
    }

    .dark-section h1 {
        font-size: 22px;
    }

    a.button-link {
        padding: 10px;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
    }

    #flash-message-container {
        width: 90%;
        max-width: 320px;
    }
}

.footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #CCCCCC;
  background-color: #1D1D1D;
  border-top: 1px solid #333;
  
  
}

.site-footer {
  background-color: #1d1d1d;
  color: white;
  text-align: center;
  padding: 15px 20px;
  font-size: 14px;
  line-height: 1.4;
}

.site-footer a {
  color: #2272ff;
  text-decoration: none;
}
.export-pdf-button {
  background-color: #2272FF;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
}

.export-pdf-button:hover {
  background-color: #1a5cd4;
}