@font-face {
  font-family: "login-font";
  src: url("../fonts/zain-mob-long800-Regular.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "login-font", sans-serif;
  user-select: none;
}
body {
  background-image: url("../imgs/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /* Adjust background size */
  background-attachment: fixed;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

form {
  width: 500px;
  height: 90%;
  background-color: rgba(255, 255, 255, 0.13);
  position: relative;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

form * {
  letter-spacing: 0.7px;
  outline: none;
  border: none;
  position: relative;
}

form h1 {
  font-size: clamp(2.375rem, 1.9063rem + 2.5vw, 4.375rem);
  color: rgb(255, 215, 166);
  font-weight: 500;
  line-height: 42px;
  text-align: center;
  /* font-family: "Kufam", sans-serif; */
}

label {
  display: block;
  margin-top: 30px;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 500;
  align-self: flex-start;
  /* font-family: "Fustat", sans-serif; */
  color: #293452;
}

input {
  display: block;
  height: 50px;
  width: 100%;
  background-color: #ffffff2c;
  border-radius: 3px;
  padding: 0 10px;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 500;
  /* text-align: right; */
  /* font-family: "Iceland", sans-serif; */
  color: #293452;
  border: 1px solid #646d868f;
}
::placeholder {
  color: #646d867e;
  font-family: "Fustat", sans-serif;
}
button {
  width: 100%;
  background-color: #4e5a7a;
  color: rgb(255, 215, 166);
  padding: 15px 0;
  font-size: 20px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transform: translateY(15px);
  /* font-family: "Fustat", sans-serif; */
}
form select {
  background-color: rgba(255, 215, 166, 0.13);
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  /* Adjust styles for smaller screens */
  form {
    width: 95%;
    height: 95%;
padding: 20px 20px 50px 20px;
  }
}
#adminLink {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  /* Positioned left for RTL layouts */
  z-index: 1000;
}
.select-list {
  width: 100%;
  margin-bottom: 8px;
}
.logo {
  width: 100%;
  height: 100%; /* Fixed dimensions for the container */
  object-fit: cover; /* or 'contain' */
  position: absolute;
  /* top: 15px;
  left: 40%; */
  /* align-self: flex-end; */
  opacity: 0.05;
}
.logo img {
  width: 100%;
  height: 100%;
  /* border-radius: 50%; */
  object-fit: cover;
  pointer-events: none;
  transform: none;
}
.error-message {
  color: red;
  margin-top: 10px;
  font-weight: bold;
}
