/* Global Styles */
body {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
  background-image: url(../img/Fondo.png);

}

header {
  background-color: #007BFF;
  color: #fff;
  text-align: center;
  padding: px;
}

main {
  text-align: center;
  margin: 20px;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
}

.logout-button {
  background-color: #dc3545;
  color: #fff;
  font-size: 16px;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.logout-button:hover {
  background-color: #a71d2a;
}

a {
  text-decoration: none;
  color: #007BFF;
}

/* Form Styles */
form {
  background-color: #f2f2f2;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="date"],
input[type="password"],
select {
  width: 100%;
  max-width: 300px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.radio-buttons.actions label {
  display: inline-block;
  margin-right: 10px;
}

.button {
  background-color: #3498db;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

/* Hidden Elements Styles */
.opciones.hidden {
  display: none;
}

/* Back Button Styles */
footer {
  text-align: center;
  margin-top: 20px;
}

/* Selected Elements Styles */
.radio-buttons.actions label input:checked + label,
.radio-buttons.actions label input:checked + label + input {
  font-weight: bold;
  color: #3498db;
}
