/*****************************|GLOBAL|*****************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f5f5f5 !important;
}

/*****************************|HEADER|*****************************/
.header-img {
  height: auto;
  width: 111px;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  border: 0px solid red;
  padding-bottom: 50px;
}

/*****************************|BOX LOGIN|*****************************/
.login-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  border: 0px solid black;
  height: 400px;
  width: 100vw;
}

.login-span {
  width: 100%;
  height: 30px;
  margin: 0 0 1px;
  padding: 4px 0 6px 16px;
  text-decoration: none;
  background-color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #262626;
  margin-top: 28px;
}

.login-input {
  color: #3166b2;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  background-color: transparent;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.41;
  letter-spacing: normal;
  outline: none;
  width: 93%;
  position: relative;
  border: 0;
  border-bottom: 1px solid rgba(34, 3, 31, 0.24);
  margin-bottom: 30px;
  margin-left: 16px;
}

.login-icon {
  position: absolute;
  top: 46.2%;
  left: 94%;
  transform: translate(-50%, -50%);
  color: #3166b2;
}

.login-btn {
  color: white;
  background-color: #3166b2 !important;
  margin-top: 30px;
  width: 120px;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
}

#eyeOpen {
  display: none;
}

.forgot-password {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #3166b2;
  margin-top: 20px;
  text-align: center;
  text-decoration: underline;
} 

/*****************************|MODAL|*****************************/

#modal-bottom {
  visibility: hidden; /* Hidden by default. Visible on click */
  background-color: #e2552d; /* Green background color */
  color: #fff; /* White text color */
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.23px;
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  bottom: 0px; /* 30px from the bottom */
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-left: 16px;
  margin-right: 16px;
  padding: 20px 20px 46px 20px;
}

#modal-bottom.show {
  visibility: visible; /* Show the snackbar */
}
