body {
    background: linear-gradient(to right, #552ba1, #1d0052);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.credencial { /*el panel ese q se muestra alrededor de la inofo y a ft*/
    width: 250px;
    height: 400px;
    background: linear-gradient(to right, rgba(85, 43, 161, 0.8), rgba(29, 0, 82, 0.8)); 
    border: 2px solid #00c3ff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 20px;
    font-family: Arial, sans-serif;
    backdrop-filter: blur(5px);
    color: #FFFFFF;
}

.credencial h2 {
    text-align: center;
    margin: 5px 0;
    font-size: 18px;
    color: #00c3ff; 
}

.credencial p {
    text-align: center;
    margin: 5px 0;
    font-size: 14px;
    color: #E0E0E0; 
}

.credencial .info {
    margin-top: 20px;
}

.credencial .info p {
    font-size: 12px;
    color: #CCCCCC; 
}

.credencial .codigo {
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #00c3ff; 
}

.foto {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    overflow: hidden; 
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #00c3ff; /* Añadir un borde para que la foto destaque */
    box-shadow: 0 0 8px rgba(0, 195, 255, 0.7); /* Efecto de brillo alrededor de la foto */
}

.foto img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.foto :hover{
    

}
