@charset "UTF-8";

#container-alert {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#container-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: -moz-max-content;
  min-height: max-content;
  height: 92vh;
  position: relative;
}

#img-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#container-login {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 3px;
  margin: 30px 40px;
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  height: -moz-fit-content;
  height: fit-content;
}

@media (max-width: 500px) {
  #container-login {
    margin: 40px 20px;
  }
}

#container-tabs {
  display: flex;
  flex-direction: row;
  width: 100%;
  font-weight: 700;
}

.tab {
  background-color: #d3d5d6;
  cursor: pointer;
  padding: 20px 40px;
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
  color: #434343;
}

.tab:hover {
  background-color: #acacac;
  color: white;
}

.active_tab {
  background-color: white;
}

@media (max-width: 470px) {
  .tab {
    padding: 10px 10px;
  }
}

.animar_container {
  animation: fadeExpand 1s ease forwards;
}

/* Definimos la animación */

@keyframes fadeExpand {
  0% {
    opacity: 0;
    height: 0;
  }

  50% {
    opacity: 1;
    height: 50%;
  }

  100% {
    opacity: 1;
    height: 100%;
  }
}

.container-form {
  width: 100% !important;
}

.form {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
}

.input-group {
  display: flex;
  justify-content: center;
  padding: 0px 20px;
  margin-bottom: 20px;
  flex-wrap: nowrap;
}

.input-group img {
  background: #dbdada;
  padding: 10px;
}

.input-group input {
  width: 100%;
  border-radius: 0px;
  border: none;
  background: #e5e5e5;
  padding-left: 5px;
}

.form_check {
  margin-top: 10px;
  padding: 0px 20px;
}

.form_check label:hover {
  cursor: pointer;
  color: #186087;
}

.check {
  border: 1px solid #979797;
}

.btn_submit {
  margin-top: 20px;
  width: 100%;
  border-radius: 0px;
  background-color: #2f6c8c;
  color: white !important;
  font-weight: 700;
  padding: 15px;
}

.btn_submit:hover {
  background-color: #186087;
}

.form-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0px 10px;
  align-items: first baseline;
}

.btn-reset {
  margin-left: 10px;
  margin-right: 10px;
}

.btn-reset:hover {
  color: #186087;
}

.alert {
  width: 90% !important;
  margin: 0px;
  margin-bottom: 10px;
  padding: 8px !important;
}

.btn-close {
  padding: 2px 2px !important;
  margin-top: 8px;
  margin-right: 8px;
}

@media (max-width: 450px) {
  .form-buttons {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}

