:root {
  --main-color: #864d27;
  --broun-color: #DE7230;
  --orange-color: #F5C85F;
  --yellow-color: #E6E392;
  --gray-color: #F6F9FC;
  --dark-color: #05030F;
  --white-color: #fff;
  --border-radius: 31px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

body {
  max-width: 100vw;
  height: 100vh;
}

/* start page loader style */

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  border: 8px solid var(--yellow-color);
  border-top: 8px solid var(--main-color);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

/* end page loader style */


.w-90 {
  width: 90%;
}

.login {
  max-width: 60rem;
  border: 1px solid var(--main-color);
  border-radius: var(--border-radius);
  box-shadow: 0px 4px 4px 5px rgba(0, 0, 0, 0.08);
}

.login-img {
  width: 100%;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}


form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 10rem;
  margin: 0;
}

.hidden {
  display: none !important;
}

.main-btn {
  border: none;
  background-color: var(--main-color);
  color: var(--white-color);
  font-weight: bold;
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius);
  transition: .5s;
  text-decoration: none;
  cursor: pointer;
}

.main-btn:hover {
  padding: 1rem 3rem;
  color: var(--white-color);
}

.disabled {
  pointer-events: none;
  background-color: #eee;
  color: #aaa;
}

.button-container  {
  cursor: not-allowed;
}
