body {
    font-family: 'Arial', sans-serif;
    background-color: #2c3e50;
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 50px;
}

.panel {
    background-color: #34495e;
    padding: 30px;
    border-radius: 10px;
    width: 600px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.formulario form {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

select {
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
}

button {
    padding: 5px 15px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #2ecc71;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #7f8c8d;
}

.logout {
    display: block;
    margin-top: 20px;
    text-align: right;
    color: #e74c3c;
    text-decoration: none;
}

.logout:hover {
    text-decoration: underline;
}
body {
  font-family: Arial;
  background: #1f2937;
  color: white;
  text-align: center;
  padding: 40px;
}

input, button {
  padding: 10px;
  margin: 5px;
}

button {
  background: #22c55e;
  border: none;
  color: white;
  cursor: pointer;
}

.error {
  color: red;
}

.correo {
  background: #111827;
  padding: 15px;
  margin-top: 20px;
}

