@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");

body {
  font-family: "Red Hat Display", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
}

*::selection {
  background-color: #00dec4;
  color: #212529;
}

/* LOGIN */
.bg-backdrop {
  border-radius: 25px;
  padding: 60px 50px;
  background: rgba(217, 217, 217, 0.05);
  backdrop-filter: blur(10px);
}

.main-wrapper-index {
  background-image: url("../img/bg-login.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.logo {
  margin-bottom: 1rem;
  max-width: 350px;
}

.login {
  max-width: 250px;
}

/* POLITICAS */
.politicas {
  margin-top: 1rem;
  color: #00dec4;
  text-decoration: none;
  transition: all 0.75s ease;
}

.politicas:hover {
  transform: scale(1.05);
  color: #01b7a2;
}

/* INPUTS */
input {
  margin-bottom: 2rem;
  font-size: 20px;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 25px !important;
  border-bottom: 1px solid #00dec4 !important;
  transition: all 0.75s ease;
  color: #fff;
}

input:focus {
  border: 0 !important;
  outline: none !important;
  border-bottom: 1px solid #fff !important;
  transition: all 0.75s ease;
}

input::placeholder {
  color: #00dec4;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  background-color: #04ae99 !important;
  -webkit-box-shadow: 0 0 0px 1000px #04ae99 inset !important;
  box-shadow: 0 0 0px 1000px #04ae99 inset !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-border-radius: 25px;
  border-radius: 25px !important;
}

/* PASSWORD */
.password-wrapper {
  position: relative;
}

.password-icon {
  filter: invert(76%) sepia(17%) saturate(5762%) hue-rotate(120deg)
    brightness(94%) contrast(101%);
  height: 18px;
  position: absolute;
  top: 10%;
  right: 8px;
  transition: all 0.75s ease;
  cursor: pointer;
}

.password-icon:hover {
  filter: invert(44%) sepia(37%) saturate(4762%) hue-rotate(146deg)
    brightness(91%) contrast(101%);
}

/* BUTTONS */
button {
  background-color: #00dec4;
  border: none;
  width: 75%;
  border-radius: 25px;
  padding: 5px 20px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.75s ease;
}

button:hover {
  transform: scale(1.05);
}

/* ALERT */
.alert {
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  color: #ff1b56;
}
