/* Estilo base para la página */
body {
    font-family: 'Candara', sans-serif;
    background: linear-gradient(120deg, #FFD500, #E4095D);
    color: #2b2b2b;
    padding: 20px;
    text-align: center;
}
/* Estilos del logo */
header {
    text-align: left;
    margin-bottom: 20px;
}

header img.logo-evento {
    max-width: 300px;  /* Ajusta el tamaño del logo */
    height: auto;
}
h1 {
    font-family: 'Playfair Display', serif;
    color: #472668;
    margin-bottom: 20px;
}

form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
}

label {
    font-weight: bold;
    color: #472668;
}

input[type="email"],
input[type="password"],
input[type="text"],
input[type="number"],
select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #472668;
    border-radius: 8px;
    font-size: 1rem;
}

input[type="submit"] {
    background-color: #472668;
    color: white;
    border: none;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #FFD500;
}

.form-container {
    margin: 20px auto;
    max-width: 600px;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
}

/* Menú desplegable */
select {
    padding: 12px;
    font-size: 1rem;
    border-radius: 8px;
}

/* Fondo con tema salsa */
body {
    background: linear-gradient(120deg, #FFD500 0%, #E4095D 100%);
    font-family: 'Candara', sans-serif;
}
.cerrar-x {
    position: absolute;
    top: 20px;
    right: 20px;
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    background-color: #472668;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: background-color 0.3s;
    z-index: 1000;
  }
  
  .cerrar-x:hover {
    background-color: #E4095D   ;
  }
  