* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
 background: linear-gradient(to bottom, #0D0F40, #000000);
  margin: 0;
  padding: 0;
  color: #f1f1f1;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  opacity: 0.12;
  filter: blur(6px) brightness(0.6);
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.eventos-contacto {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #fff;
}

.formulario-con-logo {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background-color: #000;
  padding: 2rem;
  border-radius: 10px;
  justify-content: space-between;
}

.form-eventos {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-eventos label {
  font-weight: bold;
  color: #fff;
}

.form-eventos input,
.form-eventos textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: #222;
  color: #fff;
}

.form-eventos input:focus,
.form-eventos textarea:focus {
  outline: 2px solid #0f0;
}

.form-eventos button {
  padding: 12px;
  background: #0f0;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-eventos button:hover {
  background: #0c0;
}

.logo-formulario {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  padding: 1rem;
  border-radius: 10px;
}

.logo-formulario img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.social-links {
  text-align: center; 
  margin-top: 40px;
 
}

.social-links h3 {
  margin-bottom: 15px;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
}

.social-links img {

  width: 40px;
  height: 40px;
  transition: transform 0.2s;

}

.social-links img:hover {
  transform: scale(1.1);
}