/* assets/css/estilos.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: #fefaf0;
    color: #5d4037;
    line-height: 1.6;
}

.portada-vintage {
    background: linear-gradient(rgba(254, 250, 240, 0.9), rgba(254, 250, 240, 0.9)), 
                url('../img/fondo-vintage.jpg');
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 2rem;
}

.logo-boda img {
    max-width: 200px;
    margin-bottom: 2rem;
}

.titulo-principal {
    font-size: 2.5rem;
    color: #8d6e63;
    margin-bottom: 2rem;
    font-weight: normal;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.formulario-codigo {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e0d6c8;
}

.formulario-codigo label {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #795548;
}

.formulario-codigo input {
    width: 100%;
    padding: 12px;
    border: 2px solid #d7ccc8;
    border-radius: 5px;
    font-size: 1.2rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.formulario-codigo button {
    background: #8d6e63;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.formulario-codigo button:hover {
    background: #6d4c41;
}

.error {
    background: #ffebee;
    color: #c62828;
    padding: 10px;
    border-radius: 5px;
    margin-top: 1rem;
    border: 1px solid #ffcdd2;
}

.decoracion-floral {
    margin-top: 2rem;
    opacity: 0.7;
}