@font-face {
  font-family: "tajawal";
  font-style: normal;
  font-weight: 400;
  src: url("/public/fonts/tajawal.ttf");
}
* {
  font-family: tajawal;
}

body {
  background: #eeeee4;
  direction: rtl;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

h1 {
  text-align: center;
}

h3 {
  text-align: center;
}

#root {
  margin-top: -80px;
}

img {
  display: block;
  margin: 40px auto;
  position: relative;
  right: 10px;
  transform: scale(1.2);
}

form {
  padding: 5px;
  display: grid;
  width: 350px;
  margin: auto;
  background: #fff;
  box-shadow: 0px 0px 5px rgba(110, 110, 110, 0.1);
  border-radius: 5px;
}
form input {
  transition: 0.18s;
  margin: 10px;
  padding: 10px;
  border-radius: 5px;
  outline: none;
  border: none;
  background: rgba(240, 240, 240, 0.3);
}
form input:focus {
  border-bottom: solid 3px #076e97;
}
form input[type=submit] {
  background-color: #076e97;
  color: white;
}

@media (max-width: 400px) {
  img {
    width: 250px;
  }
  div {
    width: 108%;
  }
  form {
    margin: auto;
    width: 300px;
  }
}/*# sourceMappingURL=login.css.map */