* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-image: url("Foto web1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
}

.overlay {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  display: flex;
  justify-content: flex-end; 
  align-items: center;
  padding: 40px;
}

.form-content {
  max-width: 450px;
  width: 100%;
  background: rgba(255, 255, 255, 0);
}

.form-content h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.form-content p {
  font-size: 14px;
  margin-bottom: 25px;
  color: #333;
}

label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  color: #000; 
}

label span {
  color: #ff6b6b;
}

input, select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(0,0,0,0.2); 
  border-radius: 8px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.6);
  color: #000; 
}

input::placeholder {
  color: #555;
}

.phone-input {
  display: flex;
  gap: 10px;
}

.phone-input select {
  flex: 1;
  background: rgba(255, 255, 255, 0.6);
  color: #000;
  border: 1px solid rgba(0,0,0,0.2);
}

.phone-input input {
  flex: 2;
}


.btn {
  background-color: rgba(75, 75, 255, 0.9);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.btn:hover {
  background-color: rgba(48, 48, 224, 0.9);
}


@media (max-width: 600px) {
  .overlay {
    justify-content: center;
  }
  .form-content {
    padding: 0 20px;
  }

  .form-content h1 {
    font-size: 22px;
  }
}
