@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  overflow-y: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff1e6;
  height: 100vh;
  background-image: url('background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}
.screen-1 {
  background: #ff993d;
  padding: 10px;
  margin: 150px;
  display: flex;
  height: 85vh;
  width: 300px;
  flex-direction: column;
  border-radius: 16px;
  gap: 2em;
}
.screen-1 .logo {
  margin-top: -13em;
}
.screen-1 .email {
  background: white;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  border-radius: 4px;
  border: 1px solid #bee1e6;
  color: #4d4d4d;
  margin-top: -7.5em;
}
.screen-1 .email input {
  outline: none;
  border: none;
}
.screen-1 .email input::-moz-placeholder {
  color: black;
  font-size: 0.9em;
}
.screen-1 .email input:-ms-input-placeholder {
  color: black;
  font-size: 0.9em;
}
.screen-1 .email input::placeholder {
  color: black;
  font-size: 0.9em;
  opacity: 0.6; 
}
.screen-1 .email ion-icon {
  color: #4d4d4d;
  margin-bottom: -0.2em;
}
.screen-1 .password {
  background: white;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  border-radius: 4px;
  border: 1px solid #bee1e6;
  color: #4d4d4d;
}
.screen-1 .password input {
  outline: none;
  border: none;
}
.screen-1 .password input::-moz-placeholder {
  color: black;
  font-size: 0.9em;
}
.screen-1 .password input:-ms-input-placeholder {
  color: black;
  font-size: 0.9em;
}
.screen-1 .password input::placeholder {
  color: black;
  font-size: 0.9em;
  opacity: 0.6; 
}
.screen-1 .password ion-icon {
  color: #4d4d4d;
  margin-bottom: -0.2em;
}
.screen-1 .password .show-hide {
  margin-right: -5em;
}
.screen-1 .login {
  padding: 1em;
  background: #0a1832;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
}
.screen-1 .login:hover {
  background: #e2ece9;
}

.screen-1 .footer {
  display: flex;
  font-size: 0.7em;
  color: #5e5e5e;
  gap: 14em;
  padding-bottom: 10em;
}
.screen-1 .footer span {
  cursor: pointer;
  color: white;
}

button {
  cursor: pointer;
}

a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }