/* /home/fabimoda/premio.fabimodas.com/css/estilos.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.contenedor-formulario {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.cabecera {
    text-align: center;
    margin-bottom: 20px;
}

.cabecera h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 5px;
}

.cabecera p {
    color: #666;
    font-size: 14px;
}

.grupo-input {
    margin-bottom: 20px;
}

.grupo-input label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #444;
}

.grupo-input input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.grupo-input small {
    display: block;
    color: #888;
    margin-top: 5px;
    font-size: 12px;
}

.btn-jugar {
    width: 100%;
    padding: 12px;
    background-color: #e6005c; /* Un fucsia estilo moda, cámbialo al color de tu marca */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-jugar:hover {
    background-color: #c4004e;
}

.alerta {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.error {
    background-color: #ffe6e6;
    color: #cc0000;
    border: 1px solid #cc0000;
}

.exito {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
}