@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500&family=Lato:wght@100;300&family=Roboto:wght@100;300;400;500&display=swap");
@import "https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css";
/*RESPONSIVE FORM */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Giorgio Sans", sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-image: url(../images/login_image.jpg);
  background-size: cover;
  background-position: center;
}

.img-brand {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  padding: 30px 0px 0px 30px;
}

.container-form {
  display: flex;
  border-radius: 20px;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  height: 500px;
  transition: all 1s ease;
  margin: 10px;
}

.information {
  display: flex;
  align-items: center;
  text-align: center;
  background-color: #a7bfc2;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.information .info-childs {
  width: 100%;
  padding: 0 30px;
}
.information .info-childs h2 {
  font-size: 2.5rem;
  color: #333;
}
.information .info-childs p {
  margin: 15px 0;
  color: #555;
}
.information .info-childs input {
  background-color: transparent;
  outline: none;
  border: solid 2px #9191bd;
  border-radius: 20px;
  padding: 10px 20px;
  color: #9191bd;
  cursor: pointer;
  transition: background-color 0.3 ease;
}
.information .info-childs input:hover {
  background-color: #9191bd;
  border: none;
  color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-information {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  text-align: center;
  background-color: #f8f8f8;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.form-information .form-information-childs {
  padding: 0 30px;
  width: inherit;
}
.form-information .form-information-childs h2 {
  color: #333;
  font-size: 2rem;
}
.form-information .form-information-childs p {
  color: #555;
}

.icons {
  margin: 15px 0;
}
.icons i {
  border-radius: 50%;
  padding: 15px;
  cursor: pointer;
  margin: 0 10px;
  color: #9191bd;
  border: solid thin #9191bd;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.icons i:hover {
  background-color: #c7c7f3;
  color: #fff;
}

.bx {
  margin-left: 10px;
}

.form {
  margin: 30px 0 0 0;
}
.form label {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-radius: 20px;
  padding: o 10px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.form label input {
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: none;
  outline: none;
  border-radius: 20px;
  color: #333;
}
.form label i {
  color: #a7a7a7;
}
.form input[type=submit] {
  background-color: #9191bd;
  color: #fff;
  border-radius: 20px;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.form input[type=submit]:hover {
  background-color: #7a7a9a;
}

.hide {
  position: absolute;
  transform: translateY(-300%);
}

@media screen and (max-width: 750px) {
  html {
    font-size: 12px;
  }
}
@media screen and (max-width: 580px) {
  html {
    font-size: 10px;
  }
  .container-form {
    height: auto;
    flex-direction: column;
  }
  .information {
    width: 100%;
    padding: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 0px;
    border-bottom-right-radius: 0;
  }
  .form-information {
    width: 100%;
    padding: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 0;
  }
}
@media (max-width: 768px) {
  .information {
    border-bottom-left-radius: unset;
    border-top-right-radius: 20px;
  }
  .information .info-childs {
    padding: 30px;
  }
  .img-brand {
    padding: 30px 0 0;
    width: 130px;
  }
}/*# sourceMappingURL=login_style.css.map */