body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
}

.container {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}
.navar {
  position: fixed;
  top: 1.8rem;
  right: 20px;
  z-index: 1000;
}

.ladoa, .ladob {
  flex: 1 1 50%;
  padding: 2rem;
  box-sizing: border-box;
}

.ladoa {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ladoa img {
  max-width: 80%;
  margin: 1rem 0;
}

.boton-login {
  background-color: #ff8000;
  color: white;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.boton-login:hover {
  background-color: #cc6600;
}
.ladob {
  background: #ec90397a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  }

.desc {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, button {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

button {
  background-color: #ff8000;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #cc6600;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #000000;
  color: white;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.modal-content button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #ff9d00f3;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.boton-volver {
  margin-top: 0.5rem;
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #ff8000;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.boton-volver:hover {
  background-color: #cc6600;
}
