* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Cairo", sans-serif;
}

.container {
  background-color: #fff;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.container img {
  max-width: 150px;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 6vw 6vw;
  min-width: 40%;
  border-radius: 10px;
  height: 60vh;
  text-align: start;
}
.img {
  text-align: center;
  margin-bottom: 10px;
}
form input {
  border: solid 2px #555;
  margin: 12px 0;
  padding: 10px;
  outline: none;
  background: transparent;
  font-size: 16px;
  border-radius: 15px;
}

form .label {
  direction: rtl;
}
form .footer {
  text-align: center;
}
form .footer {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 30px;
}

form #submit-btn {
  padding: 5px;
  color: #fff;
  font-size: 15px;
  border: 0;
  outline: none;
  cursor: pointer;
  width: 100px;
  border-radius: 30px;
  background: rgb(90, 90, 90);
  border: solid #555;
  font-family: "Cairo", sans-serif;
}
#skip-btn {
  padding: 5px;
  color: #555;
  font-size: 15px;
  border: 0;
  outline: none;
  cursor: pointer;
  width: 100px;
  border-radius: 30px;
  background: none;
  border: solid #555;
  font-family: "Cairo", sans-serif;
}

.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 500px) {
  form {
    width: 80%;
  }
}
@media only screen and (max-width: 380px) {
  form {
    width: 100%;
  }
}
@media only screen and (max-width: 280px) {
  form {
    width: 100%;
  }
}
/* main {
  position: relative;
  text-align: center;
  opacity: 0;
  filter: blur(5px);
  transition: opacity 1s ease-in-out, filter 0.5s ease-in-out;
} */
.info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.info p {
  font-size: 18px;
}
