@font-face {
  font-family: "mainfont";
  src: url(../font/vazir/Vazir-Medium.ttf);
}

* {
  font-family: "mainfont";
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.Container {
  width: 100%;
  height: 100vh;
  background-image: url(../Images/Bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  align-items: center;
  align-content: center;
}
.SignIn {
  background-color: rgba(196, 196, 196, 0.253);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  width: 25%;
  border-radius: 15px;
}
form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  align-items: center;
  align-content: center;
  gap: 15px;
}
form h2 {
  color: white;
  font-size: 20px;
  font-weight: bold;
}
.sInput {
  background-color: rgba(0, 0, 0, 0.361);
  color: white;
  font-size: 15px;
  border: none;
  padding: 15px;
  width: 80%;
  border-radius: 15px;
  transition: 0.3s;
}
.sInput::placeholder {
  color: white;
  text-align: center;
}
.sInput:hover {
  scale: 1.2;
}
.Back {
  background-color: tomato;

  color: white;
  padding: 10px;
  width: inherit;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.683);
  margin: 5px;
}
.ButtonHolder {
  width: 100%;

  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  justify-items: center;
  align-items: center;
  align-content: center;
  padding: 5px;
}
.ButtonHolder button {
  padding: 15px;
  color: white;
  background-color: rgba(81, 255, 0, 0.416);
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.683);
  transition: 0.3s;
}
.ButtonHolder button:hover {
  scale: 1.2;
}
.ButtonHolder a {
  font-weight: bold;
  color: white;
  font-size: 14px;
  text-decoration: underline;
  padding: 15px;
}
@media only screen and (max-width: 600px) {
  .SignIn {
    background-color: rgba(196, 196, 196, 0.253);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    width: 80%;
    border-radius: 15px;
  }

  .Back {
    background-color: tomato;

    color: white;
    padding: 10px;
    width: 100px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.683);
    margin: 5px;
  }
}
