@import url(https://fonts.googleapis.com/css?family=Orbitron:regular,500,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);

body {
  background-image: url(../images/fondo.png);
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "Inter";
}

.contact-section {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
  color: white;
}

.contact-container {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  background: linear-gradient(to right, #fecdfb, #9447b3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  color: #ccc;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.form-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.input-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #fecdfb;
  font-weight: 500;
}

input,
select,
textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #9447b3;
  box-shadow: 0 0 0 3px rgba(148, 71, 179, 0.2);
  background: rgba(0, 0, 0, 0.5);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to right, #fecdfb, #9447b3);
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s;
  margin-top: 10px;
}

.btn-back {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: rgba(148, 71, 179, 0.2);
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s;
  margin-top: 10px;

  a {
    text-decoration: none;
    color: white;
  }
}

.btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
