body {
  font-family: Arial, sans-serif;
  background-color: #e8f4fd;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  display: flex;
  background-color: #3ABAF1;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  align-items: center;
}

.login-image {
  margin-right: 30px;
}

.login-image img {
  width: 120px;
  height: 120px;
}

form {
  display: flex;
  flex-direction: column;
  width: 250px;
}

label {
  font-weight: bold;
  margin-bottom: 6px;
  color: #fff;
}

input[type=text], input[type=password] {
  padding: 8px 12px;
  border: 2px solid #ccc;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 16px;
}

input[type=submit] {
  background-color: #1C94C8;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-size: 16px;
}

input[type=submit]:hover {
  background-color: #166d9a;
}
.botones-container {
  display: flex;
  gap: 10px; /* Espacio entre los botones */
}

.btn-regresar {
  background-color: #1C94C8;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-size: 16px;
}

.btn-regresar:hover {
  background-color: #166d9a;
}
