/**
 * General variables
 */
:root {
  --bdrds: 3px;
  --white: #fff;
  --black: #000;
  --gray: #ccc;
  --teldat: #32244a;
  --smoky-black: rgba(50, 36, 74, 0.85);
  --ff: "roboto", sans-serif;
  --ff-body: 1em;
  --ff-light: 300;
  --ff-regular: 400;
  --ff-medium: 500;
}

/**
   * General configs
   */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--ff);
  font-size: var(--ff-body);
  line-height: 1em;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 2em;
  background-position: center bottom 0px;
  background-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(50, 36, 74, 0.64) 100%
    ),
    url(../images/Header-Bar-scaled-1.jpg);
  height: auto;
  min-height: 39px;
}

.bck-home {
  background-image: url(../images/support-home.jpg) !important;
  background-size: cover;
  background-position: center;
}

.error-input {
  border-bottom: solid 1px !important;
  border-color: red !important;
}

.error-label {
  color: red !important;
  /* Otros estilos que necesites */
}

.forms_title {
  margin-bottom: 45px;
  font-size: 1.5rem;
  font-weight: var(--ff-medium);
  line-height: 1em;
  text-transform: uppercase;
  color: var(--teldat);
  letter-spacing: 0.1rem;
}

.required {
  color: red;
  margin-left: 5px;
}

.formulario-container {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px var(--smoky-black);
  width: 80%;
  position: relative;
  margin: 0 auto;
  max-width: 700px;
  top: 5vh;
}

@media (max-width: 992px) {
  .formulario-container {
    top: 5vh;
  }
}
/* 
width: 80%;
    position: relative;
    margin: 0 auto;
    top: 20vh;
    max-width: 600px; */

.registration-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.registration-form h2 {
  color: var(--teldat);
  text-align: center;
  width: 100%;
}


.pass-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.pass-group label {
  width: 100%;
}

/*pass-eye*/



.html-left {
  text-align: left !important;
}

#backdrop {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #3498db;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.content {
  display: none; /* Ocultar el contenido hasta que se cargue completamente */
}

.send {
  padding: 5px 10px;
  border: 1px solid var(--teldat);
  border-radius: 4px;
  background-color: var(--teldat);
  color: var(--white);
  cursor: pointer;
}
.send:hover, .reject:hover {
  background-color: var(--white);
  color: var(--teldat);
  border: 1px solid var(--teldat);
  transition: background-color 0.2s ease-in-out;
}


.reject {
  padding: 5px 10px;
  border: 1px solid var(--teldat);
  border-radius: 4px;
  color: var(--smoky-black);
  background-color: var(--gray);
  cursor: pointer;
}

.row {
  width: 100% !important;
}

@keyframes flashDiv {
  0% {
    background-color: inherit; /* Mantiene el color original */
  }
  50% {
    background-color: lightblue; /* Aplica el color azul claro */
  }
  100% {
    background-color: inherit; /* Vuelve al color original */
  }
}

.flash-div {
  animation: flashDiv 2s forwards;
}


