/*.container {*/
/*  margin: auto;*/
/*  max-width: 800px;*/
/*  margin-top: 150px;*/
/*}*/

/*.text {*/
/*  padding: 50px;*/
/*  font-family: "Sans-Serif";*/
/*  color: #666;*/
/*}*/

.form-item-lbp-number, .form-item-mail {
  position: relative;
}

.form-item-lbp-number input,  .form-item-mail  input{
  width: 100%;
  font-size: 20px;
  box-sizing: border-box;
}
.validation-success {
  color: #305a24 !important;
  background-color: #deefd9 !important;
  border-color: #d1e8cb !important;
}

.icon-container {
  position: absolute;
  top: 58px;
  display: none;
}

/* When the screen width is greater than 500px */
@media (min-width: 501px) {
  .icon-container {
    left: 468px; /* Set a fixed width of 500px */
  }
}

/* When the screen width is 500px or less */
@media (max-width: 500px) {
  .icon-container  {
    left: 91%; /* Set the width equal to 100% of the viewport width */
  }
}

.loader {
  position: relative;
  height: 20px;
  width: 20px;
  display: inline-block;
  animation: around 5.4s infinite;
}

@keyframes around {
  0% {
    transform: rotate(0deg)
  }
  100% {
    transform: rotate(360deg)
  }
}

.loader::after, .loader::before {
  content: "";
  background: white;
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-width: 2px;
  border-color: #333 #333 transparent transparent;
  border-style: solid;
  border-radius: 20px;
  box-sizing: border-box;
  top: 0;
  left: 0;
  animation: around 0.7s ease-in-out infinite;
}

.loader::after {
  animation: around 0.7s ease-in-out 0.1s infinite;
  background: transparent;
}
