body {
  font-family: 'Segoe UI', sans-serif;
  background: url('https://images.unsplash.com/photo-1581091870622-2f8324c5a40f?auto=format&fit=crop&w=1350&q=80') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

.form-container {
  background: rgba(255, 255, 255, 0.97);
  padding: 30px;
  border-radius: 10px;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-container:hover {
  transform: scale(1.01) perspective(1000px) rotateX(1deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  color: #111;
}

/* Form Inputs */
input[type="text"],
input[type="tel"],
input[type="datetime-local"],
textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="datetime-local"]:focus,
textarea:focus {
  border-color: #d60000;
  outline: none;
  box-shadow: 0 4px 12px rgba(214, 0, 0, 0.2);
  transform: translateY(-2px);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

/* Submit Button */
.btn-primary {
  background-color: #d60000;
  color: white;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 15px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #b80000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

/* Phone Input */
.phone-field {
  position: relative;
  margin: 10px 0;
}

.phone-field .prefix {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #444;
  font-size: 15px;
  font-family: monospace;
}

.phone-field input {
  padding-left: 45px;
  font-size: 16px;
  width: 100%;
  height: 40px;
  box-sizing: border-box;
}




* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 40px;
  background: #f5f5f5;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.side-content {
  flex: 1;
  max-width: 300px;
  text-align: center;
}

.side-content img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 15px;
}

.side-content p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  padding: 0 10px;
}

.form-container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.form-container:hover {
  transform: scale(1.01);
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

input[type="text"],
input[type="tel"],
input[type="datetime-local"],
textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-primary {
  background-color: #d60000;
  color: white;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 15px;
  font-weight: bold;
}

.btn-primary:hover {
  background-color: #b80000;
}

@media (max-width: 992px) {
  .wrapper {
    flex-direction: column;
    align-items: center;
  }

  .side-content {
    max-width: 100%;
  }
}

