@import url("https://fonts.googleapis.com/css2?family=Vazirmatn&display=swap");
.vazirmatn-normal {
  font-family: "Vazirmatn", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  background-color: #22312D;
  direction: rtl;
  font-family: "Vazirmatn", sans-serif;
  font-weight: 400;
}

.creator {
  display: block;
  position: fixed;
  direction: ltr;
  bottom: 2;
  left: 20;
  color: #9CA3AF;
}
@media (max-width: 850px) {
  .creator {
    font-size: 0.75rem;
  }
}

main {
  background: radial-gradient(circle at top, rgba(126, 214, 167, 0.18), transparent 60%), rgba(34, 49, 45, 0.9);
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  color: #D1D5DB;
}

.login-base {
  background-color: #2E6F5B;
  width: 100%;
  max-width: 450px;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}
.login-base h1 {
  margin: 0 0 0.5rem 0;
  font-weight: 700;
  font-family: "Vazirmatn";
  font-size: 2rem;
  text-align: center;
}
.login-base .subtitle {
  color: #9CA3AF;
  font-size: 0.9rem;
  margin: 0 0 2rem 0;
  text-align: center;
}

form {
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
}
form p {
  text-align: center;
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
form .error-message {
  background-color: rgba(255, 77, 77, 0.15);
  border: 1px solid rgba(255, 77, 77, 0.3);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: #ff6b6b;
  font-size: 0.9rem;
  text-align: center;
  font-family: "Vazirmatn";
}
form .submit-button {
  width: 100%;
  border-radius: 0.75rem;
  border: none;
  background-color: #7ED6A7;
  color: #22312D;
  margin-top: 0.5rem;
  padding: 1rem;
  font-family: "Vazirmatn";
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(126, 214, 167, 0.3);
}
form .submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126, 214, 167, 0.4);
}
form .submit-button:active {
  transform: translateY(0);
}
form .form-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  font-family: "Vazirmatn";
}
form .form-links a {
  color: #7ED6A7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
form .form-links a:hover {
  color: rgb(164.7, 226.3, 193.4);
  text-decoration: underline;
}
form .form-links .divider {
  color: #9CA3AF;
}
form .form-links .signup-link {
  font-weight: 600;
}

.form-control {
  width: 100%;
  border: 2px solid transparent;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  background-color: rgba(34, 49, 45, 0.5);
  color: #D1D5DB;
  font-size: 1rem;
  font-family: "Vazirmatn";
  transition: all 0.3s ease;
}
.form-control:focus {
  outline: none;
  border-color: #7ED6A7;
  background-color: rgba(34, 49, 45, 0.7);
  box-shadow: 0 0 0 3px rgba(126, 214, 167, 0.1);
}
.form-control::-moz-placeholder {
  color: #9CA3AF;
  text-align: right;
  font-family: "Vazirmatn";
}
.form-control::placeholder {
  color: #9CA3AF;
  text-align: right;
  font-family: "Vazirmatn";
}
.form-control:not(:-moz-placeholder) {
  direction: ltr;
  text-align: left;
}
.form-control:not(:placeholder-shown) {
  direction: ltr;
  text-align: left;
}
.form-control:-moz-placeholder {
  direction: rtl;
  text-align: right;
}
.form-control:placeholder-shown {
  direction: rtl;
  text-align: right;
}

@media (max-width: 768px) {
  .login-base {
    padding: 2rem 1.5rem;
    max-width: 90%;
  }
  .login-base h1 {
    font-size: 1.5rem;
  }
  .form-control {
    padding: 0.85rem 1rem;
  }
  form .submit-button {
    padding: 0.85rem;
    font-size: 1rem;
  }
}
.accountHave a {
  color: #4CAF7D;
  text-decoration: none;
  font-weight: 700;
}
.accountHave a:visited {
  color: #4CAF7D;
}
.accountHave a:hover {
  color: #7ED6A7;
  text-decoration: underline;
}/*# sourceMappingURL=login.css.map */