.background {
    background-image: url('../assets/images/form-bg.png'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    height: 755px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}


/* Form Container */
.form-container {
  max-width: 500px;
  width: 100%;
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* .background-lines img {
    width: 1324px;
    height: 755px;
} */

/* Form Heading */
.form-container h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

/* Form Fields */
.form-container input,
.form-container textarea {
  width: 100%;
  padding: 0.8rem;
  margin: 0.5rem 0;
  background: #333;
  border: 1px solid #444;
  color: #fff;
  border-radius: 5px;
}

.form-container input:focus,
.form-container textarea:focus {
  border-color: #e63946;
  outline: none;
}

/* Send Button */
.form-container button {
  width: 100%;
  padding: 0.8rem;
  margin-top: 1rem;
  background: #e63946;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.form-container button:hover {
  background: #d32f2f;
}

.line {
  background: #e63946;
  width: 2px;
  height: 100%;
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 600px) {
  .form-container {
    padding: 1rem;
  }

  .form-container h2 {
    font-size: 1.5rem;
  }
}
