:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --light-red: #ff6b6b;
  --orange: #fd7e14;
  --yellow: #fed136;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #fed136;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --text-13: 13px;
  --text-14: 14px;
  --text-15: 15px;
  --text-16: 16px;
  --text-17: 17px;
  --text-18: 18px;
  --text-19: 19px;
  --text-20: 20px;
}

.login {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("/assets/img/login/background.jpg");
  background-size: cover;
  background-position: center;
  height: 50rem;
}

.login-title {
  color: black;
  font-size: 2rem;
  font-weight: 600;
  height: 50%;
  display: flex;
  align-items: center;
}

.login-icon {
  font-size: 10rem;
}

.login-wrap {
  width: 20%;
  height: 65%;
  border-radius: 3px;
  box-shadow: 2px 3px 8px #383737;
}

/* .blur-back {
  background-color: #ffffff31;
  filter: blur(3px);
  height: 100%;
  width: 100%;
  z-index: 0;
} */

.login-form {
  display: flex;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  background: white;
  border-radius: 3px;
}

.form-row {
  width: 75%;
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.login-form .form-input {
  height: 3rem;
  width: 20rem;
  display: flex;
  align-items: center;
}

.form-input input {
  background-color: white;
  outline: 0;
  border: 1px solid #383737;
  border-radius: 3px;
  width: 100%;
  height: 90%;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.form-input .icon {
  position: absolute;
  margin-left: 1rem;
}

.form-input #icon-eye {
  position: absolute;
  width: 3.5rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-input input:focus {
  outline: 0;
}

.login-form .form-btn {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.form-btn .btn-rectangle {
  background-color: white;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.form-btn a {
  color: darkblue;
  font-size: 0.875rem;
}

/* Add for form  */
#notification-login {
  font-size: 14px;
  color: red;
}

#login-form .text-welcome {
  font-size: 18px;
  color: var(--success);
}

#text-user-welcome {
  color: black;
  font-size: 20px;
  font-weight: 600;
}

/********************** RESPONSIVE ***************** */

/***** DESKTOP 1025-1400 *****/
@media (max-width: 1400px) {

  .login {
    height: 45rem;
  }

  .login-wrap {
    width: 25%;
    height: 65%;
  }

  .login-icon {
    font-size: 8rem;
  }

}

/***** TABLETS 769-1024 *****/
@media (max-width: 1024px) {
  .login {
    height: 30rem;
  }

  .login-wrap {
    width: 30%;
    height: 80%;
  }

  .login-title {
    height: 40%;
  }

  .login-icon {
    font-size: 6rem;
  }

  .form-input input {
    padding-left: 3.5rem;
  }
}

/***** TABLETS 481-768 *****/
@media (max-width: 768px) {
  .login-wrap {
    width: 35%;
    height: 80%;
  }

  .login-icon {
    font-size: 5rem;
  }

}

/***** MOBILE LANDSCAPE 320-480 *****/
@media (max-width: 480px) {
  .login-wrap {
    width: 65%;
    height: 80%;
  }

  .login-form .form-input {
    height: 2.5rem;
    font-size: 13px;
  }
}

/***** MOBILE -320 *****/
@media (max-width: 320px) {
  .login-wrap {
    width: 70%;
    height: 80%;
  }

  .login-form .form-btn {
    width: 65%;
  }
}

/********************** RESPONSIVE ***************** */