* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  user-select: none;
  margin: 0;
  padding: 0;
  height: 100vh;
  background: linear-gradient(to right, #e0eafc, #cfdef3); /* Full gradient */
  display: flex;
  justify-content: center;
  align-items: center;
}

.screen-1 {
  background: hsl(213deg 85% 97%);
  padding: 2.5em 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 30px;
  box-shadow: 0 0 2em hsl(231deg 62% 94%);
  width: 100%;
  max-width: 400px;
  gap: 2em;
}

.screen-1 .logo {
  margin-top: -1em;
  width: 200px;
  height: auto;
  align-self: center;
}

.screen-1 h2 {
  font-size: 2em;
  font-weight: 700;
  color: hsl(233deg 36% 38%);
  text-align: center;
  margin-bottom: 0.5em;
}

.screen-1 .email,
.screen-1 .password {
  background: #fff;
  box-shadow: 0 0 2em hsl(231deg 62% 94%);
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  border-radius: 20px;
  color: hsl(0deg 0% 30%);
  width: 100%;
}

.screen-1 input {
  outline: none;
  border: none;
  font-size: 1em;
  padding: 0.5em 0;
  background: none;
  width: 100%;
}

.screen-1 input::placeholder {
  color: #000;
  font-size: 0.9em;
}

.screen-1 ion-icon {
  color: hsl(0deg 0% 30%);
  margin-bottom: -0.2em;
  font-size: 1.2em;
}

.screen-1 .sec-2 {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.screen-1 .show-hide {
  margin-left: auto;
  cursor: pointer;
}

.screen-1 .login {
  padding: 1em;
  width: 100%;
  background: hsl(233deg 36% 38%);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1em;
  transition: background 0.3s ease;
  cursor: pointer;
}

.screen-1 .login:hover {
  background: hsl(233deg 36% 28%);
}

.screen-1 .footer {
  display: flex;
  font-size: 0.75em;
  color: hsl(0deg 0% 37%);
  justify-content: space-between;
  width: 100%;
  padding-bottom: 1em;
}

.screen-1 .footer span {
  cursor: pointer;
  transition: color 0.3s ease;
}

.screen-1 .footer span:hover {
  color: hsl(233deg 36% 38%);
}
