@import "home.css";
@import "header_footer.css";
@import "campanhas.css";
@import "modals.css";

/* https://meyerweb.com/eric/tools/css/reset/ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* VARS*/

:root {
  --modal-fundo: rgba(0, 0, 0, 0.5); 
	--fundo-branco-suave: #F5F9F8;
	--azul-escuro-header:#203864;
	--azul-fundo: radial-gradient(circle, #B1C5E6, #527DC8, #27467B);
	--vermelho-cancelar: #E94D4D;
	--verde-bootstrap: #57B15A;
}


body{
	height: 100vh;
  background-image: radial-gradient(circle, #B1C5E6, #527DC8, #27467B);
}

/* ----------------------------------------------------------------------------- */
/* ---------------------------- LOGIN ------------------------------------------ */
/* ----------------------------------------------------------------------------- */
.login-messages{
    width: 200px;
    padding: 10px;
    background-color: rgb(170, 15, 15);
    color: white;
    text-align: center;
    border-radius: 4px;
    border: 1px solid rgb(101, 96, 96);
    animation: pulsar 1s ease-in-out infinite alternate;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 20px;
    right: 1%;
    z-index: 1000;
}

@keyframes pulsar {
  from { filter: brightness(65%); }
  to   { filter: brightness(100%); }
}

.login-messages ul li{
  list-style: none;
  font-size: small;
}



/* ---------------------------- media query ------------------------------------------ */
@media screen and (max-width: 500px) {
  .div-input-btns-login span button{
    background-color: #d01616;
  }
}

/* ---------------------------- geral ------------------------------------------ */
.container-login{
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.div-container-centro-login{
  background-color: #FFFFFF;
  width: 60%;
  height: 35%;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  display: flex;
}

.div-container-centro-login div{
  width: 50%;
  height: 100%;
}

.div-logo-login{
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: radial-gradient(circle, #B1C5E6, #527DC8, #27467B);
  background-size: 400% 400%;
  animation: logo-animation 10s ease infinite;
}

.div-logo-login img{
  max-width: 70%;
  max-height: 50%;
}

@keyframes logo-animation {
    0% {
      background-position: 100% 0%;
      }
      50% {
      background-position: 0% 100%;
    }
    100% {
      background-position: 100% 0%;
    }
  } 

.div-inputs-login{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.div-inputs-login div{
  width: 80%;
  height: 25%;
}

.div-input-titulo-login{
  display: flex;
  align-items: center;
  justify-content: center;
}

.div-input-titulo-login h2{
  font-size: x-large;
  max-height: 80%;
  color: #333333cc;
  font-family: sans-serif;
}

.div-input-inputs-login{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:space-around;
}

.div-input-inputs-login span{
  max-width: 100%;
  min-height: 40%;
  max-height: 100%;
  min-width: 100%;;
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.div-input-inputs-login span div{
  height: 80%;
  width: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(80, 74, 74);
  border-right: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: #d01616
}

.div-input-inputs-login span div i{
  display: flex;
  font-size: small;
}

.div-input-inputs-login span input{
  all: unset;
  background-color: rgba(8, 7, 7, 0.134);
  border: 1px solid rgb(80, 74, 74);
  height: 80%;
  width: 69%;
  padding-left: 2%;
  font-size: 12px;
  font-family:Arial, Helvetica, sans-serif;
  color: rgb(54, 50, 50);
}

.div-input-inputs-login span input:focus{
  background-color: rgb(255, 255, 255);
  
}

.div-input-btns-login{
  display: flex;
  justify-content: center;
}

.div-input-btns-login span{
  width: 82%;
  height: 60%;
  display: flex;
  justify-content: space-between;
}

.div-input-btns-login span button{
  height: auto; 
  width: auto;
  min-width: 30%;
  min-height: 25%;
  max-width: 50%;
  max-height: 60%;
  padding: 1%;
  border-radius: 5px;
  color: white;
  border: none;
  background-color: #4B74BC;
  cursor: pointer;
}

.div-input-btns-login span button:hover{
  background-color: #2E4F88;
}







/* ----------------------------------------------------------------------------- */
/* ----------------------------- BASE ------------------------------------------ */
/* ----------------------------------------------------------------------------- */

.container-base{
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container-main-content{
    width: 100%;
    height: 80%;
}