
body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: linear-gradient(to bottom, #ffffff, #0076e5);
}
.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.button-login {
background-color: #ffffff;
border: none;
border-radius: 8px;
color: #0000ff;
padding: 5px 15px;
}
.email, .password {
    border-radius: 24px;
    background: linear-gradient(to right, #0077ff, #0000ff);
    border: none;
    margin: 10px;
    padding: 60px;
}

::before, ::after {
  box-sizing: border-box;
}
#email, #password {
  transform: translateX(-100px);
  scale: 0.6;
  border: 2px solid #000;
  border-radius: 8px;
  padding: 3px;
  margin: 10px 1;
  display: flex;
    justify-content: center;
    flex-direction: column;
        
}
#email:focus, #password:focus {
  outline: none;
  border: 2px solid #0000ff;
}
.forgot_password {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 10px;
}
