html {
  /* background: url(door.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; */
  background-color: #d1f1fa; 
}

.main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  /* border: 3px solid black; */
}
.parent-form-container {
  /* margin: auto; */
  /* border: 3px solid black; */
  width: 500px;
  height: 500px;
  margin: 15px;
  background-color: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.logo-container{
    /* border: 2px solid red; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.login-text {
    /* border: 2px solid purple; */
  color: #08253F;
  text-align: center;
  font-family: Nunito Sans;
  /* font-weight: 150; */
  font-weight: bold;
  font-size: 25px;
  margin-top: 15px;
}


.form-container {
    /* border: 2px solid orange; */
  width: 100%;
  /* height: 30%; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.form {
  /* border: 3px solid black; */
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.input-container {
    /* border: 2px solid rgb(255, 0, 34); */
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.input-field {
  border-radius: 10px;
  background-color: #F6F6F6;
  /* width: 100%; */
  flex-grow: 1;
  border: none;
  font-size: 16px;
  padding: 14px 12px;
  font-family: Nunito Sans;
  padding-left: 15px;
}
.input-child{
  position: relative;
  width: 100%;
  display: flex;
    
}
.eye-icon{
    position: absolute;
    top: 15px;
    right: 10px;
}
.eye-icon:hover{
    cursor: pointer;
}

.forget-password-conatiner{
    display: flex;
    justify-content: flex-end;
    width: 100%;
  /* border: 2px solid firebrick; */
  color: #0D3A63;
  font-family: Nunito Sans;
  font-weight: 400;
  font-size: 17px;
  margin-top: 10px;
 text-align: right;
}

.button-container {
    /* border: 2px solid yellow; */
  width: 100%;
  height: 20%;
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* align-self: center;   */
}

.btn-primary {
  border: none;
  width: 55%;
  border-radius: 10px;
  font-size: 18px;
  font-family: Nutino Sans;
  color: white;
  background-color: #0D3A63;
  padding: 14px 12px;
  /* margin-bottom: 40px; */
}

/* .btn-primary:disabled {
  background-color: #2c5167;
  background-image: none;
  color: #ccc;
} */
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  margin-bottom: 20px;
  color: #08253F;
  font-size: 14px;
  text-align: center;
  font-family: Nutino Sans;
}

@media only screen and (max-width: 510px){

  .login-text{
    font-size: 22px ;
  }
  .btn-primary{
    font-size: 15px;
  }
}

@media only screen and (max-width: 380px){

  .login-text{
    font-size: 18px ;
  }
  .btn-primary{
    /* width: 70%; */
    font-size: 12px;
  }
}