*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Vazir", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Vazir", sans-serif;
  background-color: var(--bg-color);
  direction: rtl;
}

::selection {
  background-color: hsla(var(--hue-1), 100%, 60%, 0.9);
  color: #fff;
}

a {
  text-decoration: none;
}

.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.auth-page {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  justify-content: center;
}

.auth-image {
  display: flex;
  flex: 1;
  /* position: relative; */
  /* width: 100%; */
  align-items: center;
  justify-content: center;
}

.auth-data {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  width: 500px;
  box-shadow: -10px 0 15px rgb(0 0 0 / 6%);
  padding: 45px 70px 0;
}

.auth-page-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.auth-page-form-description {
  color: #828282;
  margin-bottom: 30px;
}

.form-input {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0;
}

.form-input input,
.form-input textarea {
  border-radius: 8px;
  color: #0b032d;
  border: none;
  box-shadow: 0 0 10px rgb(0 0 0 / 15%);
  padding: 10px 15px;
}

.form-input input:focus {
  outline: none;
  border: none;
}

.form-input label {
  font-weight: 700;
  margin-bottom: 5px !important;
  font-size: 1rem !important;
}

.logo {
  height: 90px;
  line-height: 90px;
  font-size: 1.5rem;
  color: #2d1863;
  letter-spacing: 1px;
  margin-bottom: 40px;
  text-align: center;
}

.logo span {
  color: #6d33ff;
}

.btn {
  font-size: 1rem;
  width: 100%;
  min-width: 100px;
  min-height: 40px;
  padding: 0 16px !important;
  border-radius: 10px 10px 10px 15px !important;
  border: 1px solid #fcbf17 !important;
  display: flex;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  margin: 1rem auto 0;
  background-color: #fcbf17 !important;
  color: #0b032d;
}

@media (max-width: 1331px) {
  .auth-image img {
    max-width: 600px;
    max-height: 395px;
  }
}

@media (max-width: 985px) {
  .auth-image {
    display: none;
  }

  .auth-data {
    box-shadow: none;
    padding: 45px 30px 0;
  }
}
