@charset "utf-8";
/* CSS Document */

body {
  background: linear-gradient(135deg, #1c1c1c, #2b2b2b);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
}

.form-card h3 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

.form-control, .form-select {
  border-radius: 10px;
  border: none;
  padding: 12px;
  background: #eaeaea;
}

.form-control:focus, .form-select:focus {
  box-shadow: none;
  border-left: 4px solid #ff5a1f;
}

label {
  margin-top: 10px;
}

.required {
  color: #ff5a1f;
}

.submit-btn {
  background: #ff5a1f;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
  margin-top: 20px;
}

.submit-btn:hover {
  background: #e04e16;
}

/* RIGHT SIDE */
.content-right h2 {
  font-size: 40px;
  font-weight: 700;
}

.content-right p {
  color: #ccc;
  line-height: 1.7;
}

/* SOCIAL ICONS */
.social-icons a {
  display: inline-flex;
  width: 45px;
  height: 45px;
  background: #fff;
  color: #ff5a1f;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  text-decoration: none;
}

.social-icons a:hover {
  background: #ff5a1f;
  color: #fff;
}

/* CONTACT */
.contact i {
  color: #ff5a1f;
  margin-right: 10px;
}

.contact p {
  margin-bottom: 10px;
}