body {
  background-color: #f9f9f9;
}

.container {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 10px;
  max-width: 100%;
}

.form-label {
  color: #333;
  font-size: 18px;
}

.form-control {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 8px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: #3498dba8;
  box-shadow: 0 0 10px rgba(52, 152, 219, 0.332);
}

.btn-primary {
  background-color: #3498db;
  border: none;
  border-radius: 8px;
  /* Ahora los botones son cuadrados */
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #2980b9;
}

.btn-primary i {
  margin-right: 10px;
}

.btn-secondary {
  background-color: #2c3e50;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  margin-right: 10px;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #1d2a3b;
}

.btn-secondary i {
  margin-right: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.btn-container {
  display: flex;
  justify-content: space-between;
}

.btn-container {
  display: flex;
  justify-content: space-between;
}

.select2-selection__rendered {
  line-height: 35px !important;
}
.select2-container .select2-selection--single {
  height: 39px !important;
}
.select2-selection__arrow {
  height: 38px !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.fadeInUp {
  animation-name: fadeInUp;
}
