@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-Regular.ttf");
}
* {
  font-family: "Poppins";
}

button, input {
  font-size: 16.8px !important;
}

input {
  font-size: 12.8px !important;
  padding-left: 1em !important;
  padding-right: 1em;
}

:host {
  position: fixed;
  left: 0;
  top: 0;
  background: white;
  width: 100%;
  z-index: 99;
  height: 100%;
}

.login-page {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
}

.login-page::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
}

.login-page .container {
  min-height: 100vh;
  z-index: 999;
  padding: 20px;
  position: relative;
}

.login-page .form-holder {
  width: 51.2%;
  border-radius: 5px;
  margin: 0 auto;
}

.login-page .form-holder .info,
.login-page .form-holder .form {
  min-height: 50vh;
  padding: 40px;
  height: 100%;
}

.login-page .form-holder div[class*=col-] {
  padding: 0;
}

.login-page .form-holder .info {
  background: var(--primary-color);
  color: white;
}

.login-page .form-holder .info h1 {
  font-weight: 600;
}

.login-page .form-holder .info p {
  font-weight: 300;
}

.login-page .form-holder .form .form-group {
  position: relative;
  margin-bottom: 30px;
}

.login-page .form-holder .form .content {
  width: 100%;
}

.login-page .form-holder .form form {
  width: 100%;
}

.login-page .form-holder .form #login,
.login-page .form-holder .form #register {
  margin-bottom: 20px;
  cursor: pointer;
}

.login-page .form-holder .form a.forgot-pass,
.login-page .form-holder .form a.signup {
  color: white;
}

.login-page .form-holder .form small {
  color: gray;
}

.login-page .form-holder .form .terms-conditions label {
  cursor: pointer;
  color: gray;
}

.logo-login {
  margin-bottom: 40px;
  max-width: 100%;
}

.screen-bg {
  background: gray center center;
  background-size: cover;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}

.input-material {
  padding: 11px;
}

@media (max-width: 991px) {
  .login-page .info {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .login-page .form-holder {
    width: 90%;
  }
}
@media (max-width: 375px) {
  .btn {
    margin-top: -10px;
  }
  .align-items-center {
    margin-bottom: 1em;
  }
  .login-page .form-holder .info,
.login-page .form-holder .form {
    min-height: 60vh;
    padding: 40px;
    height: 100%;
  }
}
@media (max-width: 540px) and (max-height: 720px) {
  .login-page .form-holder .info,
.login-page .form-holder .form {
    min-height: 70vh;
    padding: 40px;
    height: 100%;
  }
}
/*new animated background*/
.header {
  position: relative;
  text-align: center;
  background: linear-gradient(60deg, rgb(84, 58, 183) 0%, rgb(0, 172, 193) 100%);
  color: white;
}

.logo {
  width: 50px;
  fill: white;
  padding-right: 15px;
  display: inline-block;
  vertical-align: middle;
}

.inner-header {
  height: 65vh;
  width: 100%;
  margin: 0;
  padding: 0;
}

.flex { /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}

.content {
  position: relative;
  text-align: center;
  background-color: white;
}

/* Animation */
.parallax > use {
  -webkit-animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
          animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}

@-webkit-keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
  .content {
    height: 30vh;
  }
}
.form.align-items-center {
  border-radius: 10px;
  background-color: #ffffff;
  border-bottom: 5px solid #cccccc;
}

input.input-material {
  border-radius: 5px;
}

/*Shrinking for iphone*/
@media (max-height: 800px) {
  .login-page.form-holder.form {
    min-height: 70vh;
  }
}
/*Inputs*/
input {
  margin-bottom: 1rem !important;
}

/*Texto*/
input.input-material[_ngcontent-wou-c24] {
  border-radius: 5px;
}

.input-material[_ngcontent-wou-c24] {
  padding: 11px;
}

input.input-material {
  width: 100%;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 10px 0;
}

button, input {
  outline: none !important;
}

button, input {
  overflow: visible;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  line-height: inherit;
}

*, ::after, ::before {
  box-sizing: border-box;
}

input:-internal-autofill-selected {
  -webkit-appearance: menulist-button;
     -moz-appearance: menulist-button;
          appearance: menulist-button;
  background-image: none !important;
  background-color: -internal-light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4)) !important;
  color: fieldtext !important;
}

input.input-material:focus {
  border-color: var(--primary-color-light);
}

/*btn*/
.login-page[_ngcontent-wou-c24] .form-holder[_ngcontent-wou-c24] .form[_ngcontent-wou-c24] #login[_ngcontent-wou-c24], .login-page[_ngcontent-wou-c24] .form-holder[_ngcontent-wou-c24] .form[_ngcontent-wou-c24] #register[_ngcontent-wou-c24] {
  margin-bottom: 20px;
  cursor: pointer;
}

.btn-lg {
  padding: 0.5rem 1rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn {
  border: 1px solid transparent;
  transition: all 0.15s ease-in-out;
}

.btn-primary {
  color: #fff;
  background-color: #16385a !important;
}

button, input[type=submit] {
  font-family: inherit;
  font-weight: 300 !important;
}

button, input {
  outline: none !important;
}

button {
  width: 100%;
}

/*iconos*/
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
  cursor: pointer;
}

.btn-text {
  font-weight: normal;
  border: 1px solid transparent;
  padding: 0 0 0 0.7rem;
  line-height: 1.25;
  border-radius: 0.25rem;
  transition: all 0.15s ease-in-out;
}

.pull-right {
  float: right;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

a {
  color: #1f4f7e !important;
  text-decoration: none;
}

.form-group {
  margin-bottom: 1rem !important;
}

.btn-lg {
  padding: 0.5rem 1rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.swal2-confirm.swal2-styled {
  display: inline-block;
  background-color: rgb(22, 56, 90) !important;
  border-left-color: rgb(22, 56, 90) !important;
  border-right-color: rgb(22, 56, 90) !important;
}/*# sourceMappingURL=index.css.map */