body {
  font-family: 'Segoe UI', sans-serif;
  background-image: url('fondo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #444;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  margin: 0;
  padding-top: 40px;
}

.container {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e1dcd3;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  width: 90%;
  max-width: 450px;
  margin-bottom: 40px;
}

.logo {
  width: 320px;
  margin-bottom: 5px;
  max-width: 100%;
}

h1 {
  color: #996220;
  font-size: 22px;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  text-align: left;
  margin: 10px 0 5px;
  font-weight: 500;
  color: #333;
}

input,
select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
}

button {
  background-color: #996220;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 12px;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media (max-width: 480px) {
  .container {
    padding: 20px;
    border-radius: 15px;
    max-width: 90%;
  }

  .logo {
    width: 240px;
  }

  h1 {
    font-size: 18px;
  }

  button {
    font-size: 15px;
  }
}
