.perfil{
    margin-top: 20px;
    
}

.button-container {
    display: flex; /* Usa flexbox para alinear los botones horizontalmente */
    gap: 10px; /* Espacio entre los botones, ajusta según sea necesario */
    
}

.btnsProfile {
    padding: 10px 20px; 
    background-color: white; 
    color: #EC111A;  
    cursor: pointer; 
    font-size: 16px; 
    border-radius: 5px;
    border: 2px solid #EC111A;
    font-weight: 600;
}

.btnsProfile:hover{
    box-shadow: 1px 1px 10px #ec111a;
    color: rgba(236, 17, 26, 0.7);
    font-weight: 900;
    border: 1px solid #EC111A;
}
.infPer{
    margin-bottom: 15px;
    font-weight: 500;
}
.tdPer{
    font-weight: 900;
}

.inputProfile {
    border: none;
    border-bottom: 2px solid #000;
    outline: none;
    padding: 5px 0;
    width: 70%; 
    font-size: 16px;
    box-sizing: border-box; 
}
.inputProfile:focus {
    border-bottom: 2px solid #EC111A;
}
.labelProfile{
    font-size: 20px;
    font-weight: 500;
}
.titleCProfile{
    margin-bottom: 50px;
}