* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style-type: none;
  border: none;
  outline: none;
  color: #fff;
  font-family: Poppins, sans-serif;
}
.content {
  width: 100%;
  background: #121b31;
  border: 0;
  backdrop-filter: blur(13px);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.content .input-box {
  position: relative;
  width: 100%;
  height: 40px;
  margin: 20px 0;
}
.content .input-box input {
  background: #121b31;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 20px 45px 20px 20px;
  font-size: 16px;
}
input::placeholder {
  color: #fff;
  font-size: 14px;
}
.input-box i {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #fff;
}
/* .content .remember {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -16px 0 16px;
} */
.btnn:hover{
  background-color: #121b31;
  color:#fff;
  border:1px solid rgba(255, 255, 255, 0.2);
}
.btnn:hover a{
  color:#fff;
}
.remember label input {
  accent-color: #fff;
  margin-right: 4px;
  font-family: "DMSans Medium";
}
.remember a {
  color: #fff;
  text-decoration: none;
}
.remember a:hover {
  text-decoration: underline;
}
.btnn {
  display: inline-block;
  background: #fff;
  color: #121b31;
  width: 100%;
  border-radius: 30px;
  font-size: 16px;
  height: 45px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin-bottom: 30px;
  margin-top: 16px;
}
.btnn a {
    color: #121b31;
    border:none;
    display: block;
    width: 100%;
    height: 100%;
    align-content: center;
}
.button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}
.button a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
.button a i {
  font-size: 20px;
  margin-right: 8px;
}
.button a:hover {
  opacity: 0.8;
}
input[type="checkbox"] {
  display: inline-block;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

input::-ms-reveal,
input::-ms-clear {
  display: none;
}

input::-webkit-credentials-auto-fill-button,
input::-webkit-clear-button,
input::-webkit-inner-spin-button,
input::-webkit-contacts-auto-fill-button {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none;
  height: 0;
  width: 0;
  margin: 0;
  padding: 0;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #121b31 inset !important;
  -webkit-text-fill-color: #fff !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Media Query */
@media only screen and (max-width:350px) {
    .main-heading{
        font-size: 1rem !important;
    }
    .login-logo{
        height: 100px !important;
        width: 100px !important;
    }
}
@media only screen and (min-width:1400px) {
    .content .input-box {
        height: 55px;
    }
    .content{
        padding: 40px;
    }
    .fs-5 {
        font-size: 1.5rem !important;
    }
}
.font-size-15{
    font-size: 15px;
}
.alert,
.alert li{
    font-family: "DM-Sans Regular";
    margin-bottom: 0;
}
/* for password reset*/
.input-box span {
    display: block;
    margin-top: 5px; /* space between input and error */
    font-size: 0.75em;
    color: red;
}
