* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  position: relative;
  top: 170px;
  background: url(../img/خلفية\ 2.jpg) no-repeat;
  background-size: cover;
}

.wrapper {
  width: 420px;
  background: transparent;
  /* خلفية بتاعة البوكس كله هنا هخليها شفافة */
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  box-shadow: 0px 0px 10px white;
  color: aliceblue;
  border-radius: 10px;
  padding: 30px 40px;
}

.wrapper h1 {
  font-size: 36px;
  text-align: center;
}

.wrapper .input-box {
  width: 100%;
  height: 50px;
  margin: 30px 0px;

}

.input-box input {
  width: 100%;
  height: 100%;
  background: transparent;
  /* خلفية شفافة */
  outline: none;
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 40px;
  font-size: 16px;
  color: white;
  padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
  color: white;
}



.input-box i {
  position: relative;
  left: 300px;
  top: -33px;
  font-size: 19px;
}

.wrapper .remember-forgot {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin: -15px 0 15px;
}

/* الفرق بين سبيس بيتوين وسبيس اراوند اني بتوين بتعمل مسافة بينهم انما اراوند بتعمل مسافة بينهم وبين الجانبين */

.remember-forgot label input {
  accent-color: rgb(226, 9, 9);
  margin: 3px;
  /* علشان اخلي لون علامة الصح في البوكس احمر */
}

.remember-forgot a {
  color: white;
  text-decoration: none;

}

.remember-forgot a:hover {
  text-decoration: underline;
}

/* تحكم في بوكس لوج ان */
.wrapper .btn {
  width: 100%;
  height: 45px;
  ;
  border: none;
  outline: auto;
  border-radius: 40px;
  box-shadow: 0 0 10px black;
  font-size: 16px;
  color: #333;
  font-weight: 600;
  /* تقل الخط */
  cursor: pointer;
  /* علشان علامة الايد تظهر في Login */
}

.wrapper .resgister-link {
  text-align: center;
  margin-top: 20px;
}

.resgister-link p a {
  font-weight: 600px;
  text-decoration: none;
  color: white;

}

.resgister-link p a:hover {
  text-decoration: underline;

}