*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#06142B;
    font-family:Arial, sans-serif;
    color:white;

}

.container{

    min-height:100vh;

    display:flex;
}

.left-panel{

    width:45%;

    background:linear-gradient(
        180deg,
        #081B3A,
        #06142B
    );

    padding:50px;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.right-panel{

    width:55%;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:40px;
}

.logos{

    display:flex;
    gap:25px;
    margin-bottom:40px;
}

.logos img{

    max-height:90px;
}

.event-title h2{

    font-size:20px;
    letter-spacing:6px;
}

.event-title h1{

    color:#D4A017;

    margin-top:10px;
    margin-bottom:20px;
}

.divider{

    width:120px;
    height:2px;

    background:#D4A017;

    margin:20px 0;
}

.small-title{

    letter-spacing:12px;
}

.event-title h3{

    font-size:72px;

    color:#D4A017;

    margin:15px 0;
}

.hero-image{

    margin-top:40px;
}

.hero-image img{

    width:100%;
    max-width:500px;
}

.event-info{

    margin-top:25px;

    display:flex;
    flex-direction:column;

    gap:8px;
}

.card{

    width:100%;
    max-width:700px;

    background:#0B1E3F;

    border:1px solid rgba(212,160,23,.4);

    border-radius:20px;

    padding:40px;
}

.card h2{

    margin-bottom:10px;

    color:#D4A017;
}

.card p{

    margin-bottom:30px;
}

.form-group{

    margin-bottom:20px;
}

label{

    display:block;
    margin-bottom:8px;
}

input{

    width:100%;

    background:#081B3A;

    border:1px solid #243E68;

    color:white;

    padding:15px;

    border-radius:10px;
}

.preview-container{

    width:180px;
    height:180px;

    border:2px dashed #D4A017;

    border-radius:15px;

    overflow:hidden;

    margin:25px auto;
}

.preview-container img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:none;
}

button{

    width:100%;

    background:#D4A017;

    color:#06142B;

    border:none;

    padding:18px;

    font-size:18px;

    font-weight:bold;

    border-radius:12px;

    cursor:pointer;
}

button:hover{

    opacity:.9;
}

@media(max-width:900px){

    .container{

        flex-direction:column;
    }

    .left-panel,
    .right-panel{

        width:100%;
    }

    .event-title h3{

        font-size:48px;
    }
}

#reader{

    width:100%;

    margin-bottom:25px;

    overflow:hidden;

    border-radius:15px;

    background:#081B3A;

    padding:10px;

    border-radius:15px;
}

.resultado-card{

    background:#081B3A;

    border:1px solid #D4A017;

    border-radius:20px;

    padding:25px;

    text-align:center;
}

.estado-ok{

    background:#0f8a39;

    color:white;

    font-weight:bold;

    padding:12px;

    border-radius:10px;

    margin-bottom:20px;
}

.foto-persona{

    width:220px;

    height:220px;

    border-radius:15px;

    object-fit:cover;

    border:3px solid #D4A017;

    margin-bottom:20px;

    display:block;

margin:0 auto 20px auto;
}

.resultado-card h2{

    color:#D4A017;

    margin-bottom:15px;
}

.resultado-card p{

    margin:10px 0;

    font-size:18px;
    max-width:500px;

margin:auto;
}

#btnReiniciar{

    margin-top:20px;
}

@media(max-width:900px){

    .foto-persona{

        width:160px;

        height:160px;
    }

    .card{

        padding:25px;
    }

    #reader{

        width:100%;
    }
}
#reader video{
    width:100% !important;
    height:auto !important;
    border-radius:15px;
}

#reader{
    width:100%;
    min-height:350px;
}