@import "https://cdn.jsdelivr.net/npm/@sweetalert2/theme-bootstrap-4/bootstrap-4.css";

.formContacto > input,
.formContacto > textarea {
  width: 100%;
  margin-bottom: 20px;
}

.formContacto > input[type="text"].Error,
.formContacto > input[type="email"].Error,
textarea.Error {
  border: 2px solid #ff655d;
}

.FondoProgress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;

  display: none;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
}

.CuerpoProgress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-direction: column;
  padding: 24px 32px;
  border-radius: 8px;
  background-color: white;
  font-family: Arial, Helvetica, sans-serif;
  color: #303639;
}

.Progress {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.Progress::before,
.Progress::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.Progress::before {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, #0066b2 0%, #7ac6ff 100%);
}

.Progress::after {
  width: 80%;
  height: 80%;
  background-color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
