* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  padding: 20px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url(../../Img/fondos/fondo3.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}


.wrapper {
  position: relative;
  height: 540px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  padding: 5m;
  align-items: center;
  overflow: hidden;
  transition: 0.2s ease;
}

.wrapper.active {
  height: 580px;
  width: 400px;
}

@media (max-width: 800px) {
  .wrapper.active {
    height: 550px !important;
  }
}

.wrapper .form-box {
  width: 100%;
  padding: 40px;
}

.form-box h2 {
  font-size: 2em;
  color: #000;
  text-align: center;
}

.input-box {
  position: relative;
  width: 100%;
  height: 70px;
  border-bottom: #000 solid 2px;
  margin: 30px 0;
}

.input-box label {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  font-size: 1em;
  color: #000;
  font-weight: 500;
  pointer-events: none;
  transition: 0.5s;
}

.input-box input:focus~label,
.input-box input:valid~label {
  top: -5px;
}

.input-box input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-weight: 600;
  padding: 0 35px 0 35px;
}

.input-box .icon {
  position: absolute;
  right: 8px;
}

/* inputs */

.input-container {
  position: relative;
  margin: 40px auto;
  width: 100%;
}

.input-container input[type="text"],
.input-container input[type="password"] {
  font-size: 20px;
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  padding: 5px 0;
  background-color: transparent;
  outline: none;
}

.input-container .label {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  transition: all 0.3s ease;
  pointer-events: none;
}

.input-container input[type="password"]:focus~.label,
.input-container input[type="password"]:valid~.label,
.input-container input[type="text"]:focus~.label,
.input-container input[type="text"]:valid~.label {
  top: -20px;
  font-size: 16px;
  color: #fff;
}

.label2 {
  color: #fff;
  font-size: 16px;
}

.input-container .underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #39A900;
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.input-container input[type="password"]:focus~.underline,
.input-container input[type="password"]:valid~.underline,
.input-container input[type="text"]:focus~.underline,
.input-container input[type="text"]:valid~.underline {
  transform: scaleX(1);
}

.btnLogin2 {
  width: 100%;
  height: 45px;
  background-color: #39A900;
  color: #fff;
  border-radius: 7px;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1em;
  font-weight: 500;
  transition: .3s ease;
}

.btnLogin2:hover {
  box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.1);
  background-color: #329500;

}


.volver,
.register-link {
  font-size: 0.9em;
  color: #000;
  text-align: center;
  font-weight: 500;
  margin: 25px 0 10px;
}

.volver,
.register-link a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: .2s ease;
}

.volver:hover,
.register-link a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}

.volver:hover,
.register-link a:hover {
  text-decoration: underline;
}

.volver {
  text-decoration: none;
  position: relative;
  left: 30%;
}

.wrapper .icon-close {
  position: absolute;
  top: 20px;
  right: 10px;
  width: 45px;
  height: 45px;
  color: #fff;
  font-size: 2em;
  transition: 0.5s;
}

.iconosd:hover {
  cursor: pointer;
  transform: rotate(360deg);
  transform-origin: center;
  transition: 0.4s;
}

.wrapper .form-box.register {
  position: absolute;
  transition: none;
  transform: translateX(600px);
}

.wrapper.active .form-box.login {
  transition: none;
  transform: translateX(-600px);
}

.wrapper .form-box.login {
  transition: transform 0.5s ease;
  transform: translateX(0);
}

.wrapper.active .form-box.register {
  transition: transform 0.5s ease;
  transform: translateX(0);
}

.rememberMe {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 1em;
}

.rememberMe a {
  color: #000;
  text-decoration: none;
}

/*Personalizados - nota: esta es la plantilla original del login*/

.comeback {
  position: fixed;
  top: 1em;
  left: 1em;
}

.bi-house-door {
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  transition: .2s ease;
}

.bi-house-door:hover {
  color: #39A900;
}

header {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  text-align: center;
}

.logoContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  scale: .8;
}

.logoContainer p:first-child {
  font-size: 32px;
}


.sub-alert {
  font-size: 12px;
}

#paginaDestino {
  width: 100%;
  height: 50px;
  background-color: transparent;
  border: none;
  border-bottom: #000 solid 2px;
  margin-bottom: 1em;
  font-size: 1em;
}

#input {
  color: #fff;
  font-weight: 700;
}

.btnVolver {
  background-color: #39A900;
  padding: .6em 1em;
  border-radius: 7px;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  transition: .3s ease;
}

.btnVolver:hover {
  background-color: #329500;
}

.a-link {
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  opacity: .6;
  transition: .1s;
}

.a-link:hover {
  opacity: .8;

}

@media (max-width: 800px) {

  .wrapper.active {
    height: 440px;
  }

  .wrapper .form-box {
    width: 100%;
    padding: 40px;
  }

  .form-box h2 {
    font-size: 2em;
    color: #000;
    text-align: center;
  }

  .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    border-bottom: #000 solid 2px;
    margin: 30px 0;
  }

  .input-box label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 1em;
    color: #000;
    font-weight: 500;
    pointer-events: none;
    transition: 0.5s;
  }

  .input-box input:focus~label,
  .input-box input:valid~label {
    top: -5px;
  }

  .input-box input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-weight: 600;
    padding: 0 35px 0 35px;
  }

  .input-box .icon {
    position: absolute;
    right: 8px;
  }

  /*custom head*/
  header {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
  }

  header .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .lineaLogoIcon {
    height: 5em;
    width: 1em;
    position: relative;
    top: -.1em;
    scale: 1.1;
    transform: scaleX(1.5);
  }

  .logoConjunto {
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;

  }

  .serviciosTec {
    font-size: 24px;
    color: #39A900;
    font-family: 'Poppins', sans-serif;
    width: 25%;
    min-width: 6em;
    font-weight: 300;
  }

  .logos img {
    height: 4.5em !important;
    width: 5em !important;
    position: relative;
    left: -1.2em;
  }

  #paginaDestino {
    width: 100%;
    height: 50px;
    background-color: transparent;
    border: none;
    border-bottom: #000 solid 2px;
    margin-bottom: 1em;
    font-size: 1em;
  }

  #input {
    color: #fff;
    font-weight: 700;
  }

  .btnVolver {
    display: none;
  }

}

.input-container input[type="password"]:focus~.underline,
.input-container input[type="password"]:valid~.underline {
  transform: scaleX(1);
}

.logos-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
  left: .2em;
  margin-bottom: 2.3em;
}

@media (min-width: 950px) {
  .logos-container {
    width: 20%;
    left: .2em;
  }
}

.logos-container img {
  height: 5em;
  width: 5em;
}

.logos-container img:last-child {
  height: 4em;
  width: 8em;
}

.logoContainer img {
  width: 3em;
  height: 3em;
}

.riseL {
  font-weight: 600;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}



.input-container .label {
  top: -30;
  left: 0;
}

.input-container select+.label {
  top: 0;
  left: 0;
  color: #fff;
  pointer-events: none;
  transition: none;
}

.radio-buttons-container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.radio-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.radio-button__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-button__label {
  display: inline-block;
  padding-left: 30px;
  margin-bottom: 10px;
  position: relative;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.radio-button__custom {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #000;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.radio-button__input:checked+.radio-button__label .radio-button__custom {
  transform: translateY(-50%) scale(0.9);
  border: 5px solid #39A900;
  color: #39A900;
}

.radio-button__input:checked+.radio-button__label {
  color: #39A900;
}

.radio-button__label:hover .radio-button__custom {
  transform: translateY(-50%) scale(1.2);
  border-color: #39A900;
  box-shadow: 0 0 10px #39A90080;
}

.toggle-password {
  position: relative;
  top: -2.8em;
}

.logoc {
  transform: scale(2.2) !important;
}