*{
    box-sizing:border-box;
}

body{
    margin:0;
    padding:0;
    background:#f4f7fb;
    font-family:Arial, Helvetica, sans-serif;
    color:#222;
}

/* =========================
   CONTENEDOR GENERAL
   ========================= */

.contenedor{
    width:100%;
    max-width:760px;
    margin:40px auto;
    background:#ffffff;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.12);
    padding:40px;
    text-align:center;
}

/* =========================
   LOGO
   ========================= */

.logo{
    width:170px;
    max-width:100%;
    margin:0 auto 20px auto;
    display:block;
}

/* =========================
   TITULOS
   ========================= */

h1{
    color:#021F59;
    font-size:34px;
    margin:10px 0;
}

h2{
    color:#094E77;
    font-size:21px;
    margin:8px 0 25px 0;
    line-height:1.35;
}

h3{
    color:#021F59;
    margin-bottom:15px;
}

p{
    line-height:1.5;
}

/* =========================
   PAGINA PRINCIPAL
   ========================= */

.seccion-verificacion,
.seccion-qr{
    margin-top:30px;
    padding:25px;
    border-radius:14px;
    background:#f8fafc;
    border:1px solid #e1e7ee;
}

form{
    width:100%;
}

input[type="text"]{
    width:100%;
    padding:15px;
    font-size:16px;
    border:1px solid #cbd5e1;
    border-radius:10px;
    outline:none;
    margin-bottom:15px;
}

input[type="text"]:focus{
    border-color:#094E77;
    box-shadow:0 0 0 3px rgba(9,78,119,.12);
}

button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#021F59;
    color:#ffffff;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    transition:.2s;
}

button:hover{
    background:#094E77;
}

.separador{
    margin:28px 0;
    color:#777;
    font-weight:bold;
}

.separador span{
    display:inline-block;
    padding:0 15px;
}

.texto-ayuda{
    color:#666;
    font-size:14px;
}

.pie-portal{
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid #e0e0e0;
    color:#666;
    font-size:14px;
}

.pie-portal strong{
    color:#A65D03;
}

/* =========================
   RESULTADO DE VERIFICACION
   ========================= */

.resultado{
    width:100%;
    text-align:center;
}

.titulo-verde{
    color:#0d8a3d;
    margin-bottom:10px;
}

hr{
    border:none;
    border-top:1px solid #dddddd;
    margin:25px 0;
}

.dato{
    text-align:left;
    margin-bottom:22px;
    padding:15px;
    background:#f8fafc;
    border-radius:10px;
}

.etiqueta{
    font-weight:bold;
    color:#021F59;
    font-size:15px;
}

.valor{
    font-size:19px;
    color:#222;
    margin-top:6px;
}

.institucion{
    margin-top:30px;
    color:#666;
    font-size:14px;
}

/* =========================
   CELULARES Y TABLETS
   ========================= */

@media (max-width: 768px){

    .contenedor{
        width:92%;
        margin:20px auto;
        padding:25px 18px;
        border-radius:16px;
    }

    .logo{
        width:140px;
    }

    h1{
        font-size:28px;
    }

    h2{
        font-size:18px;
    }

    .seccion-verificacion,
    .seccion-qr{
        padding:20px 15px;
    }

    .valor{
        font-size:17px;
    }
}