body {
  background-color: #1c1c1c;
  color: #d3d3d3;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: #2a2a2a;
}

.fs-3 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
}

.box-body {
  margin-bottom: 2rem;
}

.box-content {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  background-color: #dc3545;
  color: #d3d3d3;
  padding: 0.5rem;
  border-radius: 4px;
  animation: fadeIn 1s ease-in-out;
}

textarea.form-control {
  width: 95%;
  padding: 0.75rem;
  border-radius: 4px;
  border: 1px solid #444;
  background-color: #333;
  color: #d3d3d3;
  resize: vertical;
  transition: box-shadow 0.3s ease;
}

textarea.form-control:focus {
  box-shadow: 0 0 10px #28a745;
  outline: none;
}

.button {
  text-align: center;
}

button.btn {
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

button.btn-outline-success {
  border-color: #28a745;
  color: #28a745;
}

button.btn-outline-success:hover {
  background-color: #28a745;
  color: #1c1c1c;
  transform: scale(1.05);
}

button.btn-outline-danger {
  border-color: #dc3545;
  color: #dc3545;
}

button.btn-outline-danger:hover {
  background-color: #dc3545;
  color: #1c1c1c;
  transform: scale(1.05);
}

.alert {
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  animation: slideIn 0.5s ease-in-out;
}

.alert-primary {
  background-color: #004085;
  border-color: #b8daff;
  color: #d3d3d3;
}

.alert-success {
  background-color: #155724;
  border-color: #c3e6cb;
  color: #d3d3d3;
}

.alert-danger {
  background-color: #721c24;
  border-color: #f5c6cb;
  color: #d3d3d3;
}

.alert-warning {
  background-color: #856404;
  border-color: #ffeeba;
  color: #d3d3d3;
}

.badge {
  padding: 0.5rem;
  font-size: 0.875rem;
  border-radius: 4px;
}

.bg-danger {
  background-color: #dc3545;
}

.bg-success {
  background-color: #28a745;
}

.bg-warning {
  background-color: #ffc107;
}

.text-light {
  color: #d3d3d3;
}

.font-monospace {
  font-family: 'Courier New', monospace;
}

.text-uppercase {
  text-transform: uppercase;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.social-icons img {
  width: 40px; /* Ajusta el ancho según el tamaño de tus íconos */
  height: 40px; /* Ajusta la altura según el tamaño de tus íconos */
  border-radius: 50%; /* Hace que los íconos sean circulares */
  border: 2px solid #333; /* Borde de 2px sólido de color gris oscuro (#333) */
  padding: 5px; /* Opcional: agrega un poco de espacio alrededor de los íconos */
  box-sizing: border-box; /* Hace que el padding no afecte el tamaño total */
  transition: transform 0.3s ease-in-out; /* Animación al pasar el cursor */
}

.social-icons img:hover {
  transform: scale(1.1); /* Cambia el tamaño al pasar el cursor */
}
.separator {
    margin: 20px 0;
    height: 20px;
    display: flex;
    align-items: center;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    height: 2px;
    background-color: #ccc;
}
