/* index.css - Estilo com faixa escura no topo */

header {
    position: absolute;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  header img {
    height: 100px;
  }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: Arial, sans-serif;
  }
  
  body {
    background: linear-gradient(to bottom, #222 0%, #222 35%, #ddd 35%, #ddd 100%);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container {
    background-color: white;
    padding: 30px 40px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    width: 100%;
    max-width: 350px;
    text-align: left;
  }
  
  .container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #111;
  }
  
  form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #ccc;
  }
  
  button {
    width: 100%;
    padding: 10px;
    background-color: #222;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #444;
  }
  
  #mensagem {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
  }
  

  #loading {
    font-size: 14px;
    color: #444;
  }