body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #e0e0e0;
    font-family: Arial, sans-serif;
}
.credencial {
    width: 260px;
    height: 420px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    overflow: hidden;
    position: relative;
}
.header {
    background: linear-gradient(135deg, #333, #333);
    color: white;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
}


.info {
    padding: 10px;
}
.info h2 {
    margin: 5px 0;
    font-size: 22px;
    color: #333;
}
.info p {
    margin: 4px 0;
    font-size: 14px;
    color: #555;
}
.footer {
    background: #333;
    color: white;
    padding: 10px;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    width: 100%;
}