@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Lato", sans-serif, sans-serif;
  font-size: 1.6rem;
}

.flex, .footer, .login__container--social-media > div, .login, .header {
  display: flex;
  align-items: center;
}

.header {
  justify-content: center;
  background-color: #00001b;
  width: var(--width-ppal);
  height: 22rem;
}

.header__container .header__container--logo {
  margin-top: 1rem;
  margin-left: 2rem;
  width: 18rem;
  height: auto;
  cursor: pointer;
}

.login {
  background-color: #00001b;
  align-items: center;
  flex-direction: column;
  padding: 0rem 3rem;
  min-height: calc(100vh - 20rem);
}

.login__container {
  background-color: rgba(255, 255, 255, 0.1);
  border: 0.2rem #7453F3 solid;
  border-radius: 4rem;
  color: black;
  padding: 2rem 6.8rem 4rem;
  min-height: 70rem;
  width: 45rem;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
}
.login__container h2 {
  color: white;
  font-weight: bold;
  text-align: center;
}

.login__container--form {
  display: flex;
  flex-direction: column;
}

.login__container--form label {
  font-size: 1.4rem;
}

.login__container--remember-me {
  color: white;
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
.login__container--remember-me a {
  color: white;
  font-size: 1.4rem;
  text-decoration: none;
}

.login__container--remember-me a:hover {
  text-decoration: underline;
}

.login__container--social-media > div {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.login__container--social-media > div > img {
  width: 3rem;
  margin-right: 1rem;
  cursor: pointer;
}

.login__container--register {
  color: white;
  font-size: 1.4rem;
}

.login__container--register a {
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
}

.login__container--register a:hover {
  text-decoration: underline;
}

.input {
  background-color: transparent;
  border-left: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 0.2rem solid white;
  font-family: "Muli", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  padding: 0 2rem;
  outline: none;
  height: 5rem;
    /* Agregamos estas líneas */
  color: white; /* Hace que el texto dentro del input sea blanco */
  caret-color: white; /* Hace que el cursor también sea blanco */
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.7); /* Hace que el placeholder sea un poco más claro */
}

.btnLogin {
  color: white;
  background-color: #7453F3;
  border: none;
  border-radius: 2.5rem;
  cursor: pointer;
  /*//Muy importante */
  font-weight: bold;
  font-size: 1.6rem;
  font-family: "Muli", sans-serif;
  height: 5rem;
  letter-spacing: 0.1rem;
  margin: 1rem 0;
}

::placeholder {
  color: white;
}

.footer {
  background-color: #7453F3;
  height: 10rem;
  width: 100%;
  justify-content: center;
}

.footer a {
  cursor: pointer;
  color: white;
  font-size: 1.4rem;
  padding: 3rem;
  text-decoration: none;
}

/* Pié de página */
footer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  min-width: 32rem;
  width: 100%;
  background-color: #00001b;
  color: #F2F2F2;
  padding: 3rem;
}
footer ul {
  list-style: none;
}
footer a {
  text-decoration: none;
  color: #F2F2F2;
}
footer .info_mac {
  margin-bottom: 2rem;
}
footer .info_mac img {
  width: 115px;
  height: 115px;
}
footer .info_mac p {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.8rem;
}
footer .footer-menu, footer .footer-about, footer .footer-contact_me {
  margin-bottom: 2rem;
  color: #F2F2F2;
}
footer .footer-menu h4, footer .footer-about h4, footer .footer-contact_me h4 {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 2.8rem;
  padding-bottom: 1rem;
}
footer .footer-menu li, footer .footer-menu p, footer .footer-about li, footer .footer-about p, footer .footer-contact_me li, footer .footer-contact_me p {
  padding-bottom: 0.7rem;
  padding-left: 0.7rem;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.8rem;
  padding-bottom: 1rem;
}
footer .footer-social {
  display: inline;
}
footer .footer-social .left {
  margin-bottom: 2rem;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.8rem;
}
footer .footer-social .right {
  display: inline-flex;
  width: 70%;
  justify-content: space-between;
  padding-top: 1rem;
}
footer .footer-social .right a {
  width: 40px;
  height: 40px;
  border: 1px solid #C40CFD;
  background-color: #C40CFD;
  border-radius: 50%;
}
footer .footer-social .right .social_facebook {
  width: 32px;
  height: 32px;
  background-image: url("/loginCapacitacion/assets/Icons/Facebook_.png");
  background-position: center;
  background-repeat: no-repeat;
}
footer .footer-social .right .social_instagram {
  width: 32px;
  height: 32px;
  background-image: url("/loginCapacitacion/assets/Icons/Instagram_.png");
  background-position: center;
  background-repeat: no-repeat;
}
footer .footer-social .right .social_youtube {
  width: 32px;
  height: 32px;
  background-image: url("/loginCapacitacion/assets/Icons/Youtube_.png");
  background-position: center;
  background-repeat: no-repeat;
}
footer .footer-social .right .social_wsp {
  width: 32px;
  height: 32px;
  background-image: url("/loginCapacitacion/assets/Icons/whatsapp_.png");
  background-size: 23px 22px;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 600px) {
  body {
    width: 100%;
  }

  .login__container {
    background-color: transparent;
    border: none;
    padding: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 600px) {
  footer {
    /*  flex-direction: row;
      justify-content: space-between;*/
    display: grid;
    grid-template: 1fr 80px/1fr 100px 110px 1fr;
    grid-template-areas: "info_mac explorer about contact" "copyrigth copyrigth copyrigth copyrigth";
    align-items: flex-start;
    justify-items: center;
    gap: 5px;
    height: auto;
  }
  footer .info_mac {
    grid-area: info_mac;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  footer .footer-menu {
    grid-area: explorer;
  }
  footer .footer-about {
    grid-area: about;
  }
  footer .footer-contact_me {
    grid-area: contact;
  }
  footer .footer-contact_me hr {
    display: none;
  }
  footer .footer-social {
    grid-area: copyrigth;
    width: 100%;
    display: grid;
    grid-template-columns: 60% 40%;
    overflow: auto;
    justify-items: flex-start;
    border-top: 2px solid #F2F2F2;
    padding-top: 2rem;
  }
  footer .footer-social .left {
    display: flex;
    align-items: flex-end;
    margin: 0;
  }
  footer .footer-social .right {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: initial;
    padding: 0;
  }
}

/*# sourceMappingURL=styleLogin.css.map */
