.form-section {
  width: 100%;
  min-height: 100vh;
  background-color: #0a0a0a;
  display: flex;
}

.form-container {
  display: flex;
  width: 100%;
  flex-direction: row;
}

.form-image {
  position: relative;
  width: 50%;
  background-color: #000;
}

.form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  padding: 20px;
}

.form-text h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.form-text h2 span {
  color: #00c3ff;
}

.form-text p {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
}

.form-content {
  width: 50%;
  padding: 40px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-title {
  font-size: 26px;
  margin-bottom: 25px;
  color: #111;
  text-align: center;
}

form input {
  width: 100%;
  padding: 18px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: border 0.3s ease;
}

form input:focus {
  border-color: #00c3ff;
  outline: none;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input {
  width: 100%;
}

button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #000;
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #111;
}

@media (max-width: 768px) {
  .form-container {
    flex-direction: column;
  }

  .form-image,
  .form-content {
    width: 100%;
  }

  .form-image {
    height: 250px;
  }

  .form-text {
    top: 60%;
    transform: translate(-50%, -60%);
    padding: 10px;
  }

  .form-text h2 {
    font-size: 22px;
  }

  .form-text p {
    font-size: 14px;
  }

  .form-content {
    padding: 30px 20px;
  }

  .form-row {
    flex-direction: column;
  }
}
