:root {
    --backgroud: #FFF;
    --toneBlueBack: #54aed82d;
    --blueSky: #3391c1fa;
    --blueStrong: #19294268;
    --toneBlueStrong: #202f3cf9;
    --fileBackground: #eeededc2;
}

.font-strong {
    font-weight: 600;
    color: var(--blueSky);
}

.loaderPage {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    background-color: #FFF;
    z-index: 10000;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

input:-webkit-autofill {
    background-color: transparent !important;
    /* Elimina el color de fondo */
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    /* Fondo blanco */
    box-shadow: 0 0 0px 1000px white inset !important;
    border: none !important;
    color: inherit !important;
    /* Mantiene el color del texto */
}

body {
    background-color: var(--backgroud);
    font-family: 'Montserrat', sans-serif !important;
    font-style: normal !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    max-height: 100vh !important;
    color: var(--toneBlueStrong);
}

.conten-overflow {

    max-height: clamp(380px, 72vh, 460px);
    overflow: auto;
}

.navbar-color {
    background-color: var(--blueStrong);
}

.text-info {
    font-size: 1.1rem;
    color: var(--toneBlueStrong) !important;
    font-weight: bold;
}

.style-color {

    background-color: var(--toneBlueStrong);
    border-radius: 8px;
    padding: 5px;
    height: 35px;
    color: var(--backgroud);
    display: flex;
    align-items: center;
}

.padding-column {
    padding-left: 65px !important;
}

.switch {

    line-height: 0px !important;
}

.switch .checkTypeSwitch {
    display: none;
    margin: 0px;
}

.slider {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    border: 2px solid var(--blueSky);
    border-radius: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
    z-index: 10;
}

.slider:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--blueSky);
    border-radius: 50%;
    transition: transform 0.2s;
}

.checkTypeSwitch:checked+.slider {
    background-color: var(--blueSky);
}

.checkTypeSwitch:checked+.slider:before {
    background-color: #FFF;
}

.checkTypeSwitch:checked+.slider:before {
    transform: translate(16px, -50%);
}

.box-shadow {
    box-shadow: 4px 4px 10px rgba(51, 70, 99, 0.3);
}

input[type='text'],
input[type='number'],
input[type='email'],
input[type='password'],
input[type='date'],
input[type='time'],
input[type='datetime-local'],
select {
    width: 100%;
    height: 34px;
    line-height: 30px;
    padding: 8px;
    border: 2px solid transparent;
    border-radius: 10px;
    outline: none;
    background-color: var(--toneBlueBack);
    color: #0d0c22;
    transition: .5s ease;

}

.btnFunctionPrimary {
    border: none;
    height: 44px;
    padding: 4px;
    border-radius: 5px;
    background-color: var(--toneBlueStrong);
    color: #FFF;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btnFunctionPrimary:hover {
    transform: scale(1.03);
    box-shadow: 4px 4px 10px rgba(51, 70, 99, 0.3);
}

.label-title {

    font-size: 1.1rem;
}

.li-options {

    margin: 15px 0;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.li-options:hover {
    transform: translateX(10px);
    color: var(--blueSky);
}

.li-options-select {
    transform: translateX(10px);
    color: var(--blueSky);
}

.full-width {
    width: 100%;
}

.bottom-position {

    margin-top: auto;
}

.p-10 {
    padding: 10;
}

.container-flex-login {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    background: rgb(182, 201, 255);
    background: radial-gradient(circle, rgba(182, 201, 255, 0.9019257361147583) 0%, rgba(220, 241, 255, 0.9047268565629377) 100%);
}

.flex-column-center {

    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

}

.container-forms {
    width: 280px;
    border-radius: 8px;
    background-color: var(--blueStrong);
    gap: 20px;
}

.label-title-login {
    color: var(--toneBlueStrong);
    font-size: 1.1rem;
}

.contentInputUi {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border-radius: 7px;
    background-color: #FFF;
    padding: 4px;
}

.contentIcon {
    border: none;
    margin-left: 5px;
    margin-right: 5px;
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px 18px;

}

.iconUser {
    background-image: url(../../img/icons/user.svg);
}

.iconLogin {
    background-image: url(../../img/icons/login.svg);
}

.iconPassword {
    background-image: url(../../img/icons/password.svg);
}

.input {
    width: 100%;
    line-height: 30px;
    border: 2px solid transparent;
    border-radius: 10px;
    outline: none;
    background-color: transparent !important;
}

.contentAviso {
    font-family: 'Arial', sans-serif;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#btnAvisoPrivacidad {
    margin-left: 30px;
    z-index: 10000;
}

#checkAviso {
    width: 20px;
    height: 20px;
}

.container-style {

    max-width: 100vw;
    min-width: 100vw;
    max-height: 100vh;
    min-height: 100vh;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 15px;
    background: rgb(182, 201, 255);
    background: radial-gradient(circle, rgba(182, 201, 255, 0.9019257361147583) 0%, rgba(220, 241, 255, 0.9047268565629377) 100%);
}

.content-list-forms {

    padding-right: 55px;
}

.containerQuestionary {

    padding: 15px;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(33, 33, 33, 0.1);
    text-align: center;
}

.title-content-login {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}