/* styles.css */
body {
    font-family: Arial, sans-serif;
    background: url('fondo.jpeg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: -1;
}

.container {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    width: 90%;
    max-width: 400px;
    position: relative;
    z-index: 1;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

h2 {
    text-align: center;
}

p {
    text-align: right;
    font-weight: bold;
    margin-bottom: 10px;
}

.personas-registradas {
    font-weight: bold;
    font-size: 32px;
}

#contador {
    font-size: 32px;
    color: #BD8D40;
    font-weight: bold;
}

label {
    display: block;
    font-weight: bold;
    text-align: left;
    margin-top: 10px;
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

button {
    background-color: #BD8D40;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
    font-weight: bold;
}

button:hover {
    background-color: #EF9243;
}
