@font-face {
  font-family: "IranSans";
  src: url("{% static 'font/iransans/IRANSans.ttf' %}") format("truetype");
}

body {
  background: url("images/batman-pattern1.png") repeat;
  background-position: center;
  font-family: "Yekan", sans-serif;
  position: relative;
  min-height: 100vh;
  margin: 0;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; 
  background-color: rgba(39, 22, 1, 0.459);
  z-index: 0;
  pointer-events: none;
}

/* Custom padding for alerts */
#alert-box {
  z-index: 1050; /* Ensure it stays above other elements */
}
.form-container {
  z-index: 2;
  max-width: 420px;
  border-radius: 30px;
}
/* For smaller screens */
@media (max-width: 768px) {
  .form-container {
    padding: 20px;
  }
}

input::placeholder {
  font-size: 14px;
}

input[type="text"]::placeholder {
  font-size: 14px;
}

input[type="text"] {
  text-align: left;
  font-size: 14px;
}


.btn {
  border-radius: 30px;
}
