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

body{
    font-family: 'Roboto' !important;
}

.titulo-ui{
    font-style: normal;
    font-weight: bold;
    font-size: 47.3101px;
    line-height: 49px;
    color: #002E29;
    width: 100%;
}

.lbl-obligatorios{
    font-style: normal;
    font-weight: 900;
    font-size: 26.9975px;
    line-height: 30px;
    color: #002E29;
    width: 100%;
    padding: 2% 0;
}

.ui-labels-inputs{
    font-style: normal;
    font-weight: bold;
    font-size: 25.1792px;
    line-height: 21px;
    color: #002E29;
    width: 100%;
}

.ui-input-pass{
    background: #FFFFFF;
    border: 3px solid #DADADA;
    box-sizing: border-box;
    border-radius: 10px;
    max-width: 589px;
    width: 100%;
    height: 45px;
    padding: 1% 2%;
}

.ui-btn-firmar{
    max-width: 589px !important;
    width: 100% !important;
    height: 58px !important;
    background: #B18147 !important;
    border-radius: 9px !important;
    color:#FFF !important;
    text-align: center !important;
    border: none !important;
}

.ui-texto-btn-blanco{
    font-style: normal !important;
    font-weight: bold !important;
    font-size: 25.1792px !important;
    line-height: 21px !important;
    color: #FFFFFF !important;
}

#ipfPrivateKey, #ipfCertificado{
    display: none;
}

.btn-fileupload{
    max-width: 589px;
    width: 100%;
    height: 45px;
    background-color: #FFFFFF;
    border: 3px solid #DADADA;
    box-sizing: border-box;
    border-radius: 10px;

    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 21px;
    color: #002E29;
    text-align: left;
    padding: 1% 2%;    
}

.btn-icon-file{
    background-image: url('/resources/img/file.svg');
    background-repeat: no-repeat;
    background-position: right;
    background-origin: content-box;
}

.input-requerido{
	border: 3px solid #fb222c;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}