body{
    font-family: 'Arial', sans-serif;
    /* background-color: #5e9d45; */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 78vh;
    color: #333;
}

body {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 0; /* camadas abaixo do conteúdo */
}

.background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/img/background1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5; 
    z-index: -1;
    filter: blur(2px);

}

input[type="text"],
input[type="password"] {
 color: #787b7b;

}

/* #splash{
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: #175b1e;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2em;
      z-index: 9999;
}

#splash > img {
    width: 250px;
    height: 250px;
}

#app {
      display: none;
} */

.maintenance-container {
    text-align: center;
    /* padding: 2rem; */
    padding: 12px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 300px;
    margin: 0 10px;
    margin-top: -80px;
}


h1{
    color: #000000;
    /* margin-bottom: 1rem; */
    font-size: 1.3rem;
}

h3{
  font-size: 12px;
   color: red;
   font-weight: bolder;
   text-transform: uppercase;

}

p{
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

a{
    text-decoration: none;
    color: #7f8c8d; 
}

.icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.contact {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.logo{
    width: 200px;
    height: 200px;
    
}

.button-login{
  background-color: #043baa;
  border: none;
  color: white;
  padding: 5px 32px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  border-radius: 15px;
  max-width: 270px;
  width: 86%;
  height: 30px;
  border-radius: 5px;
  
}

.button-login:hover{
    background-color: #48448f;
}

.login{
    font-size: 16px;
    font-weight: bolder;
    border: 2px, solid;
    border-collapse: collapse;
    border-color: #d7d7d7;
    border-radius: 5px;
    height: 30px;
    width: 86%;
    box-sizing: border-box;
    text-transform: uppercase;
    text-align: center;    
}

/* input[type="password"]{
    width: 72.3%;
} */

#toggleSenha{
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    /* margin-left: -40px; */
    margin-top: 0px;
}

.fa-eye, 
.fa-eye-slash, 
.fa-toggle-on, 
.fa-toggle-off{
    color: #787b7b;
    /* padding-top: 8px; */
}

.flex-senha {
  display: flex;
  align-items: center;
  gap: 0px;
  width: 98%;
  margin-left: 20px;
  margin-top: -8px;
}

.flex-senha input.login {
  flex: 1;
}

.flex-senha button#toggleSenha {
  background: none;
  border: none;
  cursor: pointer;
  /* padding: 4px 8px; */
  font-size: 1.2em;
  color: #333;
  transition: transform 0.2s ease;
}

.flex-senha button#toggleSenha:hover {
  transform: scale(1.1);
}

/* animação dos ícones */
.animated-toggle {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.animated-toggle.fade-out {
  opacity: 0;
}

.animated-toggle.fade-in {
  opacity: 1;

}

footer{
    font-size: 20px;
    position: fixed;
    color: #000000;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    display: flex;
    width: 100%;
    bottom: 0;
    align-items: center;
    justify-content: center;  
    z-index: -1;
}

#anoatual, span{
    margin-left: 4px;
}

@media (min-width: 336px) and (max-width: 700px) {

    .traco{
        display: none;
    }
    
    footer{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }


}