body {
  background-image: url('imgsEcomerce/SITE\ EcoLuxo\ \(1\).png'); 
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  margin: 0;
}

.container {
  background: #d2dace;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  width: 100%;
  max-width: 450px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

.container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #1e9b50;
  font-size: 26px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-weight: bold;
  font-size: 14px;
  color: #0a4d1c;
}

input, select {
  padding: 12px;
  border: 2px solid #1e9b50;
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus, select:focus {
  border-color: #0a4d1c;
  box-shadow: 0 0 8px rgba(30,155,80,0.4);
}

button {
  padding: 12px;
  background: #1e9b50;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  margin-top: 10px;
}

button:hover {
  background: #0a4d1c;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.links {
  text-align: center;
  margin-top: 20px;
}

.links a {
  margin: 0 10px;
  color: #1e9b50;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.links a:hover {
  color: #0a4d1c;
}

@media (max-width: 1024px) {
  .container {
    max-width: 80%;
    padding: 30px 25px;
  }

  h3 {
    font-size: 24px;
  }

  input, select, button {
    font-size: 16px;
    padding: 14px;
  }

  .links a {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 90%;
    padding: 25px 20px;
  }

  h3 {
    font-size: 22px;
  }

  input, select, button {
    font-size: 15px;
    padding: 12px;
  }

  .links a {
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .container {
    max-width: 95%;
    padding: 20px 15px;
  }

  h3 {
    font-size: 20px;
  }

  input, select, button {
    font-size: 14px;
    padding: 10px;
  }

  .links a {
    font-size: 12px;
  }
}
