* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }

  #inicio{
    height: 100vh;
}

.search-container {
    text-align: center;
  }
  
  .busca {height: 35px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 19px;
  }
  
  
#cabecalho{
    height: 20vh;
    width: 100%;
    justify-content: center;
    display: flex;
    flex-direction: row;
    align-items: center;
}
#pags{
    height: 10vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
  
}
#pags a{
    color: #ADA8A8;
    text-decoration: none;
    font-family: Instrument Sans;
    font-size: 18px;
}

  body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
   background-color: #f0e9e2;
  }

  .container {
    display: flex;
    width: 800px;
    height: 450px;
    background: #fff;
    border-radius: 15px;
  
  }

  .login {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
  }
#voltar{
    text-decoration: none;
    padding: 10px 20px;
    margin-top: 20px;
    background: #fff;
    color: #700000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
  .login h2 {
    margin-bottom: 20px;
  }

  .social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }

  .social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border: 1px solid #ccc;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    color: #333;
  }

  .login input {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .login button {
    padding: 10px 20px;
    background: #700505;
    border: none;
    color: #fff;
    border-radius: 5px;

  }

  .login button:hover {
    background: #610a07;
  }

  .forgot {
    font-size: 12px;
    margin-top: 5px;
    color: #555;
  }

 
  .signup {
    flex: 1;
    background: linear-gradient(to right, #831f00, #a15c4f);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
  }

  .signup h2 {
    margin-bottom: 15px;
  }

  .signup button {
    padding: 10px 20px;
    margin-top: 20px;
    background: #fff;
    color: #700000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }

  .signup button:hover {
    background: #f0f0f0;
  }