/* login.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  user-select: none;
}
  
body {
  background: linear-gradient(-5deg, #23a6d5, #1a4d7a);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#flash-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  text-align: center;
  font-size: 1.3em;
  font-weight: bold;
  z-index: 1000;
  transition: opacity 1s ease-out;
  opacity: 1;
}

.logo-login{
  width: 70%;
  margin: 0 auto;
  display: flex;
}
  
.login-container {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 100%;
  display:inline-block;
}
  
h3 {
  color: #1a4d7a;
  text-align: center;
  margin-bottom: 1vh;
  font-size: x-large;
}
  
h4 {
  color: #333333;
  margin-bottom: 1.5vh;
  text-align: center;
}

label {
  display: block;
  color: #1a4d7a;
  font-weight: bold;
  margin-top: 1rem;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: #1a4d7a;
  background-color: #E6E7E8;
}

input[type="text"]:hover,
input[type="password"]:hover {
  background-color: #E6E7E8;
}

button[type="submit"] {
  background-color: #1a4d7a;
  color: #f0f0f0;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 1.5rem;
  width: 100%;
  transition: background-color 0.3s;
}

button[type="submit"]:hover {
  background-color: #16406a;
}

p {
  color: #1a4d7a;
  margin-top: 1rem;
}

.solic-cadastro {
  color: #2c8ef0;
  text-decoration: none;
}

.solic-cadastro :hover {
  text-decoration: underline;
}

a{
  text-decoration: none;
  color: white;
}

.site-version {
  width: 100%;
  text-align: center;
  font-size: 1em;
  background-color: white;
  padding: 3px 0;
}