*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f2f4f8;
    color:#222;
    display:flex;
    justify-content:center;
    padding:25px;
}

.contenedor{
    width:min(500px,100%);
}

h1{
    text-align:center;
    margin-bottom:25px;
}

.panel{
    background:white;
    padding:25px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
}

h2{
    font-size:18px;
    margin-bottom:12px;
}

.longitudes{
    display:flex;
    justify-content:space-between;
    margin-bottom:25px;
    flex-wrap:wrap;
    gap:10px;
}

.opciones{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:25px;
}

#txtPassword{
    width:100%;
    padding:12px;
    font-size:20px;
    text-align:center;
    border:2px solid #bbb;
    border-radius:8px;
    margin-bottom:25px;
}

.botones{
    display:flex;
    gap:12px;
}

.botones button{
    flex:1;
}

button{
    padding:12px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    transition:.2s;
}

button:hover{
    transform:translateY(-2px);
}

#btnGenerar{
    background:#1976d2;
    color:white;
}

#btnCopiar{
    background:#2e7d32;
    color:white;
}

.btnInicio{
    width:100%;
    margin-top:20px;
    background:#555;
    color:white;
}

@media (max-width:600px){
    .botones{
        flex-direction:column;
    }
}

/* ===================================== */
/* Menú principal                        */
/* ===================================== */

.descripcion{
    text-align:center;
    margin-bottom:25px;
}

.menuApps{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.botonApp{
    display:block;
    padding:16px;
    text-decoration:none;
    text-align:center;
    background:#1976d2;
    color:white;
    border-radius:8px;
    transition:.2s;
    font-size:18px;
}

.botonApp:hover{
    transform:translateY(-2px);
    background:#1565c0;
}

.titulo{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    color:#736CA8;
    margin-bottom:25px;
}

.logoTitulo{
    width:62px;
    height:62px;
}