@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

:root {
  --cor0: rgb(220, 30, 30);
  --cor1: rgb(255, 255, 255);
  --cor2: rgb(0, 0, 0);
  --cor3: rgb(230, 230, 230);
  --cor4: rgb(25, 25, 25);
  --cor5: rgb(205, 205, 205);
  --cor6: rgb(50, 50, 50);
  --cor7: rgb(180, 180, 180);
  --cor8: rgb(75, 75, 75);
  --cor9: rgb(155, 155, 155);
  --cor10: rgb(100, 100, 100);
  --cor11: rgb(130, 130, 130);
  --cor12: rgb(125, 125, 125);
  --cor13: rgb(105, 105, 105);
  --cor14: rgb(150, 150, 150);
  --cor15: rgb(80, 80, 80);
  --cor16: rgb(175, 175, 175);
  --cor17: rgb(55, 55, 55);
  --cor18: rgb(200, 200, 200);
  --cor19: rgb(30, 30, 30);
  --cor20: rgb(225, 225, 225);
}

* {
  font-family: "Nunito", serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body#login {
  display: flex;
  background: var(--cor0);
  height: 100vh;
  width: 100%;
}

body#login .content {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

body#login .content .container-login {
  max-width: 400px;
  margin: 10px;
  background: var(--cor1);
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 1px 1px 1px 1px rgba(50, 50, 50, 0.1);
}

body#login .content .container-login .logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

body#login .content .container-login .logo img {
  width: 50%;
}

body#login .content .container-login .texto {
  display: flex;
  flex-direction: column;
  text-align: center;
}

body#login .content .container-login .texto b {
  margin: 20px 10px 15px;
  font-size: 14px;
  text-align: center;
}

body#login .content .container-login .texto span {
  margin: 25px 20px 0 20px;
  font-size: 12px;
  text-align: center;
  color: var(--cor0);
}

body#login .content .container-login .texto p {
  margin: 25px 30px 0;
  font-size: 12px;
  text-align: center;
}

body#login .content .container-login .coolinput {
  display: flex;
  flex-direction: column;
  position: static;
  width: 100%;
}

body#login .content .container-login .coolinput label {
  font-size: 14px;
  color: var(--cor10);
  font-weight: 700;
  position: relative;
  border-radius: 5px;
  top: 0.5rem;
  margin: 0 0 0 7px;
  padding: 0 3px;
  background: var(--cor1);
  width: fit-content;
}

body#login .content .container-login .coolinput input {
  padding: 10px 10px;
  font-size: 14px;
  border: 1px solid var(--cor10);
  border-radius: 5px;
  background: var(--cor1);
}

body#login .content .container-login .coolinput input:focus {
  outline: none;
}

body#login .content .container-login button {
  margin-top: 10px;
  padding: 10px;
  font-size: 14px;
  background: var(--cor5);
  border: 1px solid var(--cor10);
  border-radius: 5px;
  color: var(--cor2);
  cursor: pointer;
}

body#login .content .container-login button:hover {
  background: var(--cor10);
  color: var(--cor1);
}

body#login .tela-carregando {
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--cor0);
  display: none;
  justify-content: center;
  align-items: center;
}

body#login .tela-carregando div {
  height: 100px;
  width: 100px;
  border: 5px solid var(--cor0);
  border-left-color: var(--cor1);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

body#login_erro {
  height: 100dvh;
  width: 100%;
  background: var(--cor0);
  display: flex;
  justify-content: center;
  align-items: center;
}

body#login_erro .msgbox-error {
  margin: 10px;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  text-align: justify;
}

body#login_erro .msgbox-error div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

body#login_erro .msgbox-error div h1 {
  color: var(--cor6);
  display: flex;
  align-items: center;
  font-size: 20px;
}

body#login_erro .msgbox-error div img {
  width: 20px;
}

body#login_erro .msgbox-error p {
  color: rgb(50, 50, 50);
  font-size: 16px;
  text-align: left;
}

body#login_erro .msgbox-error .contato {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--cor9);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin: 25px 0 0 0;
}

body#login_erro .msgbox-error .contato:hover {
  background: var(--cor10);
}

body#login_erro .msgbox-error .contato img {
  height: 25px;
  width: 25px;
  margin-right: 10px;
}

body#login_erro .msgbox-error .contato b {
  color: var(--cor1);
  font-size: 16px;
}

@media screen and (max-width: 500px) {
  body#login {
    height: 100dvh;
  }

  body#login .content {
    align-items: baseline;
  }

  body#login .content .container-login {
    margin: 0;
    border-radius: 0;
    height: 100%;
    width: 100%;
    max-width: 100%;
  }

  body#login .tela-carregando {
    background: var(--cor1);
  }

  body#login .tela-carregando div {
    height: 75px;
    width: 75px;
    border: 5px solid var(--cor1);
    border-left-color: var(--cor0);
  }

  body#login_erro .msgbox-error div h1 {
    font-size: 20px;
  }

  body#login_erro .msgbox-error div img {
    width: 20px;
  }

  body#login_erro .msgbox-error .contato b {
    font-size: 16px;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=login.css.map */