body {
  background: linear-gradient(to right, #1c1c1c, #3b0000);
  color: #FFD700;
  font-family: 'Segoe UI', sans-serif;
}

.logo {
    margin: 0;
    width: 200px;
    height: auto;
    cursor: pointer;

}
.contact-card {
  background-color: #121212;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  padding: 30px;
  color: #FFD700;
}

.form-label {
  color: #FFD700;
}

.form-control {
  background-color: #1f1f1f;
  border: 1px solid #FFD700;
  color: #FFD700;
}

.form-control::placeholder {
  color: #b8860b;
}

.btn-primary {
  background-color: #8B0000;
  border: none;
  color: #FFD700;
}

.btn-primary:hover {
  background-color: #a00000;
  color: #fff;
}
.btn-whatsapp {
  background-color: #ffffff;
  color: #FFD700;
  font-weight: bold;
  border: 2px solid #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #FFD700;
  color: #121212;
  transform: scale(1.05);
}
hr {
  border-top: 1px solid #FFD700;
}