* {
  font-family: "Vazir";
}

body {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow-y: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #dde5f4;
  height: 100vh;
}

.screen-1 {
  background: #313789;
  padding: 2em;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  gap: 2em;
  min-height:450px;
  min-width: 550px;
  margin:auto;
}
.screen-1 .logo {
  display: block;
  margin: 10px auto 20px ;
  border-radius: 50%;
  width: 235px;
  height: 100px;
}
.screen-1 .email {
  background: white;
  box-shadow: 0 0 2em #e6e9f9;
  padding: 1em;
  gap: 0.5em;
  border-radius: 20px;
  color: #4d4d4d;
  margin-top: -2em;
  margin-bottom: 50px;
}
.envelope{
  display: flex!important;
  flex-direction: row!important;
  justify-content: left;
  align-items: center;
  padding: 5px;
}
.emailcontrol{
  margin-left: 20px;
  background-color: white!important;
}
input {
  background-color: white!important;
}
.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;
}
.screen-1 .email ion-icon {
  color: #4d4d4d;
  margin-bottom: -0.2em;
}
.screen-1 .password {
  background: white;
  box-shadow: 0 0 2em #e6e9f9;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  border-radius: 20px;
  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;
}
.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: #6699FF;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 18px;
  width:50%;
  display:block;
  margin:50px auto 20px;
  transition:all 0.5s ease;
}
.screen-1 .login:hover{
  width:70%;
  background: #60728A;

}
.screen-1 .footer {
  display: flex;
  font-size: 0.7em;
  color: #5e5e5e;
  gap: 14em;
  padding-bottom: 10em;
}
.screen-1 .footer span {
  cursor: pointer;
}

button {
  cursor: pointer;
}