@import url("./global-constants.css");

body {
  font-family: var(--font-family);
  background-color: rgb(255, 249, 249);
  width: 100vw;
  height: 100vh;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 500px;
  min-height: 70%;
  background-color: rgb(255, 255, 255);
  box-shadow: 1px 1px 5px grey;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* div[data-error] .input {
  border-color: #c92432;
  color: #c92432;
  background: #fffafa;
  border: 2px solid #c92432;
} */

.error {

  font-size: 0.85em;
  color: #c92432;
  display: block;
  margin: 10px 10px;
  display: none;
  transition: width 2s;
}

.logo {
  width: 100px;
  margin: 40px;
  padding-top: 20px;
  /* border-radius: 10px;
  box-shadow: 1px 1px 5px grey; */
}

.admin-text {
  font-size: 30px;
  margin-bottom: 30px;
}

.input {
  width: 300px;
  height: 40px;
  margin: 10px;
  border-radius: 10px;
  border: 0;
  padding: 10px;
  background-color: rgb(228, 228, 228);
  transition: all 300ms;
  font-size: 17px;

}

.input:hover {
  background-color: rgb(167, 167, 167);
}

.btn-login {
  background-color: var(--theme-color);
  color: white;
  margin-bottom: 20px;
  transition: all 300ms;
}

.btn-login[disabled] {
  background-color: grey;
}

.btn-login[disabled]:hover {
  background-color: grey;
}

.btn-login:hover {
  background-color: black;
}

#forgot-password {
  color: grey;
  font-size: small;
  cursor: pointer;
  padding-bottom: 60px;

}



@media only screen and (max-width: 600px) {
  .container {
    width: 100vw;
    height: 100vh;
    justify-content: center;
  }
}