/* Inicio estilos menu Tab */
.tabs-container {
    width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.tabs {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.tab {
    text-decoration: none;
    padding: 10px;
    background-color: rgb(244, 245, 244, 255);
    color: rgb(0,153,204);
    cursor: pointer;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transition: background-color 0.4s ease;
}

.tab.active {
    background-color: rgb(0,153,204);
    color: #fff;
}

.tab-content .tab-pane {
    display: none;
    padding: 10px;
}

.tab-content .tab-pane.active {
    display: block;
}
/* Fin estilos menu Tab */

/* Inicio estilos input */
#txtRFC,
#txtCargo,
#txtVersion,
#passwordCER{
    all: unset;
    margin: none;
    padding: none;
    border: none;
    border: 1px;
    background-color: #ffff;
    width: 75%;
    height: 38px;
    border-left: 6px solid rgb(0, 153, 204);
    text-indent: 25px;
    font-size: 11pt;
    font-weight: bold;
    margin-bottom: 25px;
    left: 75%;
    transform: translate(15%, 15%);
}

.input-style::placeholder {
    color: black;
    font-weight: lighter;
}

.div-file {
    cursor: pointer;
    border: 0px;
    background-color: #ffff;
    width: 75%;
    height: 38px;
    border-left: 6px solid rgb(0, 153, 204);
    text-indent: 25px;
    margin-bottom: 25px;
    left: 75%;
    transform: translate(15%, 15%);
}
  
.div-file .input-file {
    pointer-events: none;
}
  
.div-file .place-holder-file {
    pointer-events: none;
    font-weight: lighter;
    font-size: 11pt;
    text-indent: -1px;
    color: black;
    position: absolute;
    top: 58%;
    transform: translate(-0%, -62%);
    max-width: 93%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.div-file .place-holder-file:before {
    content: attr(data-placeholder);
}
  
.div-file .input-file:focus + .place-holder-file,
.div-file .input-file:not(:place-holder-file-shown) + .place-holder-file {
    display: none;
}
/* Fin estilos input */

/* Inicio estilos Banner */
#login-container-2{
    justify-content: center;
    display: inline-block;
    margin-top: 20px;
    margin-left: 37%;
    margin-right: 2%;
    overflow: hidden;
    margin-bottom: 150px; 
}

#login-container{
    justify-content: center;
    display: inline-block;
    margin-top: 20px;
    margin-left: 37%;
    margin-right: 2%;
}

@media (max-width: 768px) {
/* Estilos aplicados para pantallas con un ancho máximo de 768px */
    #login-container {
        margin-left: 2%;
        margin-right: 2%;
    }
}

.card {
    display: inline-block;
    width: 275px;
    height: 525px;
    background-color: rgba(37, 62, 110, 255);
    border-radius: 60px;
    overflow: hidden;
    margin-bottom: 30px; 
    margin-top: 50px;
    margin-right: 0px;
    margin-left: 8%;
}

.card img {
    width: 80%;
    margin-top: 35px;
    margin-left: 20px;
    height: auto;
}

.card-content {
    padding: 16px;
}

.card-content h2 {
    margin-top: 16px;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

.card-content p {
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    margin-bottom: 25px;
    color: #fff;
}
/* Fin estilos Banner */ 
