@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px;  
  padding-bottom: 20px; 
  min-height: 100vh; 
  box-sizing: border-box;  
}


body::before {
  content: '';
  background-image: url('../img/fundoLogin.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}


h1 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2c3e50;
  font-size: 36px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px; 
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

h2 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ecf0f1; 
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px; 
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2); 
  position: relative;
  z-index: 1;
}


h2::before {
  content: '';
  position: absolute;
  top: -12px; 
  left: -12px;
  right: -12px;
  bottom: -12px;
  background-color: rgba(0, 0, 0, 0.7); 
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  z-index: -1; 
}

table {
  margin-top: 30px; 
  width: 80%;
  margin-bottom: 20px;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


th, td {
  padding: 10px;
  text-align: center;
  border: 1px solid #ccc;
}

th {
  background-color: #4CAF50;
  color: white;
}

td {
  background-color: #ccc;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

tr:hover {
  background-color: #ddd;
}

.clear-button {
  background-color: #ff4d4d; 
  color: #fff; 
  border: none; 
  padding: 10px 20px; 
  border-radius: 5px; 
  cursor: pointer; 
  font-size: 16px; 
  font-weight: bold; 
  transition: background-color 0.3s ease; 
  margin-top: 20px;
}

.clear-button:hover {
  background-color: #cc0000; 
}

a {
  font-family: "Poppins", serif;
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

a:hover {
  background-color: #45a049;
}
