* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  font-weight: normal;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.login-page {
  background: linear-gradient(
    52deg,
    rgba(176, 233, 255, 0.04) 0%,
    rgba(152, 192, 255, 0.25) 56%,
    rgba(205, 149, 16, 0.24) 100%
  );
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-form {
  width: 630px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo {
  width: 380px;
}
.logo > img {
  width: 100%;
}
.logo > h3 {
  margin-top: 26px;
  color: #28367b;
}
input[type="text"],
input[type="password"] {
  width: 100%;
  border-radius: 6px;
  margin-top: 5px;
  height: 46px;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  outline: none;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
input[type="text"]:focus,
input[type="password"]:focus {
  box-shadow: 0px 0px 10px -4px grey;
}
.btn {
  width: 100%;
  height: 50px;
  margin-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
  background: linear-gradient(
    52deg,
    rgb(20, 24, 46) 0%,
    rgb(38, 48, 98) 56%,
    rgb(16, 110, 205) 100%
  );
  border: none;
  color: #fff;
  transition: all 0.4s;
}
.btn:hover {
  background: linear-gradient(
    52deg,
    rgb(16, 110, 205) 0%,
    rgb(38, 48, 98) 40%,
    rgb(20, 24, 46) 100%
  );
}
.password-div{
    position: relative;
}
#show-password {
  position: absolute;
  bottom: 8px;
  right: 5px;
  width: 50px;
  height: 30px;
  font-size: small;
  border-radius: 4px;
  padding: 4px;
  color: #666666;
  border: none;
  background-color: white;
}
