/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
  }
  
  /* Corpo */
  body {
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  /* Container de Login */
  .login-container {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
    color: #333;
  }
  
  /* Banner (Logo de Login) */
  .login-banner {
    width: 270px; /* ajuste esse valor conforme desejado */
    height: auto;
  }
  
  /* Labels e Inputs */
  .login-container label {
    display: block;
    text-align: left;
    margin: 1rem 0 0.5rem;
    font-weight: bold;
    color: #312664;
  }
  
  .login-container input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background: #f7f7f7;
    color: #312664;
    margin-bottom: 1rem;
  }
  
  /* Botão */
  .login-container button {
    background: linear-gradient(90deg, #312664, #EB8022);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin-top: 1rem;
  }
  
  .login-container button:hover {
    box-shadow: 0 6px 14px rgba(49, 38, 100, 0.3);
    transform: translateY(-3px);
  }
  
  /* Rodapé */
  .footer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1.5rem;
    text-align: center;
  }
  
  .footer a {
    color: #312664;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer a:hover {
    color: #EB8022;
    text-decoration: underline;
  }
  
  /* Mensagem de erro */
  .error-message {
    color: red;
    margin-bottom: 1rem;
  }
  