/* GENERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* BACKGROUND IMAGE */
body {
  background: url("background.jpg") no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  backdrop-filter: blur(3px);
}

/* BACK BUTTON */
.back-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  background: #1b4bc4;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  transition: 0.3s ease;
  z-index: 999;
}

.back-btn:hover {
  background: #355dcc;
  transform: translateX(-3px);
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.92);
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  animation: fadeSlide 0.7s ease-out;
}

h1 {
  text-align: center;
  color: #1b4bc4;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  margin-bottom: 25px;
  font-size: 15px;
  color: #444;
}

/* FORM */
.consult-form .form-group {
  margin-bottom: 18px;
}

label {
  font-weight: 600;
  color: #222;
  display: block;
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: .3s;
}

input:focus, select:focus, textarea:focus {
  border-color: #1b4bc4;
  box-shadow: 0 0 6px rgba(27, 75, 196, 0.25);
}

textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 14px;
  background: #1b4bc4;
  border: none;
  color: white;
  font-size: 17px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: .3s;
}

.submit-btn:hover {
  background: #355dcc;
}

/* ANIMATION */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .container {
    padding: 25px 20px;
  }
}
