/* Estilo principal */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('./vn.jfif') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
  }
  
  .container {
    text-align: center;
    padding: 20px;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    margin: 50px auto;
    animation: fadeIn 1s ease-in-out;
  }
  
  .titulo h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  }
  
  .titulo p {
    font-size: 1rem;
  }
  
  .formulario {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  label {
    text-align: left;
    font-size: 1.2rem;
  }
  
  input, select, button {
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    width: 100%;
  }
  
  button {
    background-color: #f39c12;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #d35400;
  }
  
  .login-proprietario {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  
  .login-proprietario button {
    background-color: #34495e;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
  }
  
  .login-proprietario button:hover {
    background-color: #2c3e50;
  }
  
  .mensagem-sucesso {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #2ecc71;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 5px;
    animation: fadeIn 1s ease-in-out, fadeOut 1s 4s ease-out;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeOut {
    to {
      opacity: 0;
    }
  }
  
  .area-proprietario {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    margin: 20px;
    border-radius: 10px;
  }
  
  table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
  }
  
  table, th, td {
    border: 1px solid #fff;
  }
  
  th, td {
    padding: 10px;
    text-align: center;
  }
  