body {
     
  background-image: url('imgsEcomerce/SITE\ EcoLuxo\ \(1\).png'); 

}
.container {
  display: grid;
  place-self: center;
  background: #d2dace;
  padding: 40px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  width: 100%;
  max-width: 590px;
  transition: transform 0.3s, box-shadow 0.3s;
  
}

h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #1e9b50;
  font-size: 26px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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: 980px) {
.container {
max-width: 90%;
padding: 60px 40px;
min-height: 700px;
}

h2 {
font-size: 32px;
}

input, select, button {
font-size: 18px;
padding: 16px;
}

.links a {
font-size: 16px;
}
}

@media (max-width: 768px) {
.container {
max-width: 95%;
padding: 70px 35px;
min-height: 750px;
}

h2 {
font-size: 34px;
}

input, select, button {
font-size: 18px;
padding: 18px;
}

.links a {
font-size: 16px;
}
}

@media (max-width: 500px) {
.container {
max-width: 98%;
padding: 80px 30px;
min-height: 800px;
}

h2 {
font-size: 36px;
}

input, select, button {
font-size: 20px;
padding: 20px;
}

.links a {
font-size: 17px;
}
}

@media (max-width: 350px) {
.container {
max-width: 100%;
padding: 90px 20px;
min-height: 850px;
}

h2 {
font-size: 38px;
}

input, select, button {
font-size: 22px;
padding: 22px;
}

.links a {
font-size: 18px;
}
}
