:root {
    --ds-blue: #013A63;
    --ds-blue-rgb: 1, 58, 99;
    --ds-blue-app: #013A63;
    --ds-blue-app-rgb: 1, 58, 99;
    --ds-yellow: #ffe94e;
    --ds-yellow-rgb: 255, 233, 78;
    --ds-blue-light: #6DB9EF;
    --ds-blue-light-rgb: 109, 185, 239;
    --ds-green: #73E2A7;
    --ds-green-rgb: 115, 226, 167;

    --ds-red: #ef233c;
    --ds-red-rgb: 239, 35, 60;
}


input:-webkit-autofill,
input:-webkit-autofill:active,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: var(--ds-dark) !important;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    -moz-transition: background-color 5000s ease-in-out 0s;
    -ms-transition: background-color 5000s ease-in-out 0s;
    -o-transition: background-color 5000s ease-in-out 0s
}

/** * TEXT */
.ds-h1,
.ds-h2,
.ds-h3,
.ds-h4,
.ds-h5,
.ds-link,
.ds-text {
    margin: 0;
    padding: 0;
    word-wrap: break-word !important;
    word-break: break-word !important;
    font-family: var(--ds-font);
    color: var(--ds-dark);
    text-decoration: none;
    font-weight: 400
}

.ds-h5,
.ds-link {
    font-weight: 600
}

.ds-h1 {
    font-size: 56px
}

.ds-h2 {
    font-size: 40px
}

.ds-h3 {
    font-size: 32px
}

.ds-h4 {
    font-size: 24px
}

.ds-h5 {
    font-size: 16px
}

.ds-text {
    font-family: var(--ds-font);
    font-size: 16px;
    color: var(--ds-dark)
}

.ds-link {
    color: var(--ds-dark);
    font-family: var(--ds-font);
    font-size: 1rem;
    text-decoration: none
}

.ds-to-uppercase {
    text-transform: uppercase;
}

/** * UTILS  */
.ds-d-inline {
    display: inline !important
}

.ds-d-inline-block {
    display: inline-block !important
}

.ds-d-block {
    display: block !important
}

.ds-d-grid {
    display: grid !important
}

.ds-d-table {
    display: table !important
}

.ds-d-table-row {
    display: table-row !important
}

.ds-d-table-cell {
    display: table-cell !important
}

.ds-d-flex {
    display: flex !important
}

.ds-d-inline-flex {
    display: inline-flex !important
}

.ds-flex-fill {
    flex: 1 1 auto !important
}

.ds-flex-row {
    flex-direction: row !important
}

.ds-flex-column {
    flex-direction: column !important
}

.ds-flex-row-reverse {
    flex-direction: row-reverse !important
}

.ds-flex-column-reverse {
    flex-direction: column-reverse !important
}

.ds-flex-grow-0 {
    flex-grow: 0 !important
}

.ds-flex-grow-1 {
    flex-grow: 1 !important
}

.ds-flex-shrink-0 {
    flex-shrink: 0 !important
}

.ds-flex-shrink-1 {
    flex-shrink: 1 !important
}

.ds-flex-wrap {
    flex-wrap: wrap !important
}

.ds-flex-nowrap {
    flex-wrap: nowrap !important
}

.ds-flex-wrap-reverse {
    flex-wrap: wrap-reverse !important
}

.ds-justify-content-start {
    justify-content: flex-start !important
}

.ds-justify-content-end {
    justify-content: flex-end !important
}

.ds-justify-content-center {
    justify-content: center !important
}

.ds-justify-content-between {
    justify-content: space-between !important
}

.ds-justify-content-around {
    justify-content: space-around !important
}

.ds-justify-content-evenly {
    justify-content: space-evenly !important
}

.ds-align-items-start {
    align-items: flex-start !important
}

.ds-align-items-end {
    align-items: flex-end !important
}

.ds-align-items-center {
    align-items: center !important
}

.ds-align-items-baseline {
    align-items: baseline !important
}

.ds-align-items-stretch {
    align-items: stretch !important
}

.ds-align-content-start {
    align-content: flex-start !important
}

.ds-align-content-end {
    align-content: flex-end !important
}

.ds-align-content-center {
    align-content: center !important
}

.ds-align-content-between {
    align-content: space-between !important
}

.ds-align-content-around {
    align-content: space-around !important
}

.ds-align-content-stretch {
    align-content: stretch !important
}

.ds-align-self-auto {
    align-self: auto !important
}

.ds-align-self-start {
    align-self: flex-start !important
}

.ds-align-self-end {
    align-self: flex-end !important
}

.ds-align-self-center {
    align-self: center !important
}

.ds-align-self-baseline {
    align-self: baseline !important
}

.ds-align-self-stretch {
    align-self: stretch !important
}

.ds-order-first {
    order: -1 !important
}

.ds-order-0 {
    order: 0 !important
}

.ds-order-1 {
    order: 1 !important
}

.ds-order-2 {
    order: 2 !important
}

.ds-order-3 {
    order: 3 !important
}

.ds-order-4 {
    order: 4 !important
}

.ds-order-5 {
    order: 5 !important
}

.ds-order-last {
    order: 6 !important
}

.ds-m-0 {
    margin: 0 !important
}

.ds-m-1 {
    margin: .25rem !important
}

.ds-m-2 {
    margin: .5rem !important
}

.ds-m-3 {
    margin: 1rem !important
}

.ds-m-4 {
    margin: 1.5rem !important
}

.ds-m-5 {
    margin: 3rem !important
}

.ds-m-auto {
    margin: auto !important
}

.ds-mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
}

.ds-mx-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
}

.ds-mx-2 {
    margin-right: .5rem !important;
    margin-left: .5rem !important
}

.ds-mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important
}

.ds-mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important
}

.ds-mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important
}

.ds-mx-auto {
    margin-right: auto !important;
    margin-left: auto !important
}

.ds-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.ds-my-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
}

.ds-my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
}

.ds-my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
}

.ds-my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
}

.ds-my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
}

.ds-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
}

.ds-mt-0 {
    margin-top: 0 !important
}

.ds-mt-1 {
    margin-top: .25rem !important
}

.ds-mt-2 {
    margin-top: .5rem !important
}

.ds-mt-3 {
    margin-top: 1rem !important
}

.ds-mt-4 {
    margin-top: 1.5rem !important
}

.ds-mt-5 {
    margin-top: 3rem !important
}

.ds-mt-auto {
    margin-top: auto !important
}

.ds-me-0 {
    margin-right: 0 !important
}

.ds-me-1 {
    margin-right: .25rem !important
}

.ds-me-2 {
    margin-right: .5rem !important
}

.ds-me-3 {
    margin-right: 1rem !important
}

.ds-me-4 {
    margin-right: 1.5rem !important
}

.ds-me-5 {
    margin-right: 3rem !important
}

.ds-me-auto {
    margin-right: auto !important
}

.ds-mb-0 {
    margin-bottom: 0 !important
}

.ds-mb-1 {
    margin-bottom: .25rem !important
}

.ds-mb-2 {
    margin-bottom: .5rem !important
}

.ds-mb-3 {
    margin-bottom: 1rem !important
}

.ds-mb-4 {
    margin-bottom: 1.5rem !important
}

.ds-mb-5 {
    margin-bottom: 3rem !important
}

.ds-mb-auto {
    margin-bottom: auto !important
}

.ds-ms-0 {
    margin-left: 0 !important
}

.ds-ms-1 {
    margin-left: .25rem !important
}

.ds-ms-2 {
    margin-left: .5rem !important
}

.ds-ms-3 {
    margin-left: 1rem !important
}

.ds-ms-4 {
    margin-left: 1.5rem !important
}

.ds-ms-5 {
    margin-left: 3rem !important
}

.ds-ms-auto {
    margin-left: auto !important
}

.ds-p-0 {
    padding: 0 !important
}

.ds-p-1 {
    padding: .25rem !important
}

.ds-p-2 {
    padding: .5rem !important
}

.ds-p-3 {
    padding: 1rem !important
}

.ds-p-4 {
    padding: 1.5rem !important
}

.ds-p-5 {
    padding: 3rem !important
}

.ds-px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.ds-px-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
}

.ds-px-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important
}

.ds-px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
}

.ds-px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
}

.ds-px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
}

.ds-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.ds-py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
}

.ds-py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
}

.ds-py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
}

.ds-py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
}

.ds-py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
}

.ds-pt-0 {
    padding-top: 0 !important
}

.ds-pt-1 {
    padding-top: .25rem !important
}

.ds-pt-2 {
    padding-top: .5rem !important
}

.ds-pt-3 {
    padding-top: 1rem !important
}

.ds-pt-4 {
    padding-top: 1.5rem !important
}

.ds-pt-5 {
    padding-top: 3rem !important
}

.ds-pe-0 {
    padding-right: 0 !important
}

.ds-pe-1 {
    padding-right: .25rem !important
}

.ds-pe-2 {
    padding-right: .5rem !important
}

.ds-pe-3 {
    padding-right: 1rem !important
}

.ds-pe-4 {
    padding-right: 1.5rem !important
}

.ds-pe-5 {
    padding-right: 3rem !important
}

.ds-pb-0 {
    padding-bottom: 0 !important
}

.ds-pb-1 {
    padding-bottom: .25rem !important
}

.ds-pb-2 {
    padding-bottom: .5rem !important
}

.ds-pb-3 {
    padding-bottom: 1rem !important
}

.ds-pb-4 {
    padding-bottom: 1.5rem !important
}

.ds-pb-5 {
    padding-bottom: 3rem !important
}

.ds-ps-0 {
    padding-left: 0 !important
}

.ds-ps-1 {
    padding-left: .25rem !important
}

.ds-ps-2 {
    padding-left: .5rem !important
}

.ds-ps-3 {
    padding-left: 1rem !important
}

.ds-ps-4 {
    padding-left: 1.5rem !important
}

.ds-ps-5 {
    padding-left: 3rem !important
}

.ds-text-lighter {
    font-weight: lighter !important
}

.ds-text-normal {
    font-weight: 400 !important
}

.ds-text-bolder {
    font-weight: bolder !important
}

.ds-text-start {
    text-align: start !important
}

.ds-text-center {
    text-align: center !important
}

.ds-text-end {
    text-align: end !important
}

.ds-text-justify {
    text-align: justify !important
}

.ds-w-25 {
    width: 25% !important
}

.ds-w-50 {
    width: 50% !important
}

.ds-w-75 {
    width: 75% !important
}

.ds-w-100 {
    width: 100% !important
}

.ds-h-25 {
    height: 25% !important
}

.ds-h-50 {
    height: 50% !important
}

.ds-h-75 {
    height: 75% !important
}

.ds-h-100 {
    height: 100% !important
}

.ds-mw-25 {
    min-width: 25% !important
}

.ds-mw-50 {
    min-width: 50% !important
}

.ds-mw-75 {
    min-width: 75% !important
}

.ds-mw-100 {
    min-width: 100% !important
}

.ds-mh-25 {
    min-height: 25% !important
}

.ds-mh-50 {
    min-height: 50% !important
}

.ds-mh-75 {
    min-height: 75% !important
}

.ds-mh-100 {
    min-height: 100% !important
}

.ds-w-auto {
    width: auto !important
}

.ds-h-auto {
    height: auto !important
}

.ds-mw-0 {
    min-width: 0 !important
}

.ds-mh-0 {
    min-height: 0 !important
}

.ds-container,
.ds-container-fluid,
.ds-container-lg,
.ds-container-md,
.ds-container-sm,
.ds-container-xl,
.ds-container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {

    .ds-container,
    .ds-container-sm {
        max-width: 540px
    }
}

@media (min-width:768px) {

    .ds-container,
    .ds-container-md,
    .ds-container-sm {
        max-width: 720px
    }
}

@media (min-width:992px) {

    .ds-container,
    .ds-container-lg,
    .ds-container-md,
    .ds-container-sm {
        max-width: 960px
    }
}

@media (min-width:1200px) {

    .ds-container,
    .ds-container-lg,
    .ds-container-md,
    .ds-container-sm,
    .ds-container-xl {
        max-width: 1140px
    }
}

@media (min-width:1400px) {

    .ds-container,
    .ds-container-lg,
    .ds-container-md,
    .ds-container-sm,
    .ds-container-xl,
    .ds-container-xxl {
        max-width: 1320px
    }
}

.ds-position-relative {
    position: relative !important;
}

.ds-muted {
    display: inline-block;
    font-size: .8rem;
    color: rgba(var(--ds-dark-rgb), .4);
    font-weight: 400;
    font-family: var(--ds-font)
}

.ds-badge {
    display: inline-block;
    font-family: var(--ds-font);
    color: var(--ds-light);
    background-color: var(--ds-dark);
    padding: 0 9px;
    border-radius: 24px
}

.ds-disabled {
    pointer-events: none !important
}

.ds-hidden {
    display: none !important
}

.ds-transform-25 {
    transform: scale(.25) !important
}

.ds-transform-50 {
    transform: scale(.5) !important
}

.ds-transform-75 {
    transform: scale(.75) !important
}

.ds-flex-box {
    display: flex;
    align-items: center
}

/** * ALERTS */
.ds-alert-box {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 4020
}

.ds-alert {
    --ha: 64px;
    width: 296px;
    min-height: var(--ha);
    background-color: #fff;
    display: block;
    margin: 9px;
    border-radius: 4px;
    box-shadow: 0 0 48px 1px rgba(0, 0, 0, .275);
    animation: fade-in-bottom .3s cubic-bezier(.39, .575, .565, 1) both;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    z-index: 0
}

.ds-alert::before {
    content: '';
    width: 3px;
    height: 16px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    z-index: -1;
    background-color: var(--ds-red)
}

.ds-alert.ds-out {
    animation: fade-out-bottom .3s cubic-bezier(.25, .46, .45, .94) both
}

.ds-alert .ds-icono[role=alert-icon] {
    color: var(--ds-blue);
    width: 40px;
    min-height: var(--ha);
    position: relative;
    z-index: 0;
    font-size: 1rem
}

.ds-alert .ds-icono[role=alert-close] {
    width: 48px;
    min-height: var(--ha);
    cursor: pointer;
    color: var(--ds-red);
    overflow: visible
}

.ds-alert-content {
    width: 0;
    flex: 1;
    padding: 16px
}

.ds-alert-content>.ds-text {
    font-size: .9rem
}

.ds-alert-timer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: rgba(var(--ds-dark-rgb), .1);
    animation: ds-alert-time 5s linear
}

@keyframes ds-alert-time {
    to {
        width: 100%
    }
}

.ds-login-box {
    width: 100%;
    display: flex;
    height: 100%;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1;
    justify-content: center;
    overflow-x: hidden;
}

.ds-login-item {
    width: 100%;
    height: 100%;
    background-color: var(--ds-light);
    position: relative;
    z-index: 1;
    overflow: hidden
}

.ds-login-form {
    width: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    overflow: hidden
}

.ds-login-presentation {
    width: 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
    flex: 1;
    height: auto;
}

.ds-login-presentation::after,
.ds-login-presentation::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 0
}

.ds-login-presentation::before {
    background-color: rgba(var(--ds-white-rgb), .3);
    background-image: linear-gradient(90deg, var(--ds-light), transparent, transparent);
}

.ds-login-presentation::after {
    z-index: -1;
    background-image: linear-gradient(90deg, var(--ds-light), transparent, transparent), url('../IMAGENES/Start.jpg');
    background-size: cover;
    background-position: center
}

.ds-lines-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    margin: auto;
    width: 100%
}

.ds-line {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(255, 255, 255, .1);
    overflow: hidden
}

.ds-line::after {
    content: "";
    display: block;
    position: absolute;
    height: 15%;
    width: 100%;
    top: -50%;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #fff 75%, #fff 100%);
    -webkit-animation: ds-drop-animation 7s 0s infinite;
    animation: ds-drop-animation 7s 0s infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(.4, .26, 0, .97);
    animation-timing-function: cubic-bezier(.4, .26, 0, .97);
    filter: blur(1px)
}

.ds-line:nth-child(1) {
    margin-left: -25%
}

.ds-line:nth-child(1)::after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.ds-line:nth-child(3) {
    margin-left: 25%
}

.ds-line:nth-child(3)::after {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s
}

@-webkit-keyframes ds-drop-animation {
    0% {
        top: -50%
    }

    100% {
        top: 110%
    }
}

@keyframes ds-drop-animation {
    0% {
        top: -50%
    }

    100% {
        top: 110%
    }
}

.ds-lines-horizontal {
    transform: rotate(60deg)
}

.ds-title-app {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: bolder;
    color: var(--ds-star);
    background: -webkit-linear-gradient(360deg, var(--ds-blue), #00638a, #008ea3, #00b9ab, var(--ds-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.ds-login-tabs {
    border: 1px var(--ds-star) solid;
    border-radius: 48px;
    overflow: hidden;
}

.ds-login-tabs .ds-link {
    width: 160px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.ds-login-tabs .ds-link .ds-icono {
    color: var(--ds-blue)
}

.ds-login-tabs .ds-link.ds-active {
    background-color: var(--ds-star);
    color: var(--ds-white)
}

.ds-login-tabs .ds-link.ds-active .ds-icono {
    color: var(--ds-white);
    animation: fade-in-right .2s cubic-bezier(.39, .575, .565, 1) both
}

.ds-connect-text {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 0 40px
}

.ds-connect-text::after,
.ds-connect-text::before {
    content: '';
    width: 50%;
    height: 1px;
    background-color: var(--ds-dark);
    opacity: .2
}

.ds-connect-text .ds-text {
    width: 100%;
    text-align: center;
    font-weight: bolder
}

.ds-lista-networks {
    align-items: center;
    justify-content: center;
}

.ds-lista-networks .ds-icono {
    width: 72px;
    height: 72px;
    font-size: 1.5rem;
    border-radius: 50%
}

.ds-icono[data-network=google] {
    box-shadow: 0 0 0 1px var(--ds-dark);
}

.ds-icono[data-network=google] img {
    width: 24px;
    height: 24px
}

.ds-icono[data-network=facebook] {
    background-color: #3b5998;
    color: var(--ds-white);
    box-shadow: none
}

.ds-icono[data-network=instagram] {
    background-color: rgba(225, 48, 108, .0725);
    box-shadow: none
}

.ds-icono[data-network=instagram] svg {
    fill: url(#kmk-instagram-gradient)
}

.ds-tabs-content {
    width: 100%
}

.ds-tabs-content>.ds-tab-item:not(.ds-active) {
    display: none !important
}

.ds-form {
    width: 320px;
    margin: 0 auto
}

.ds-form-group {
    --br: 9px;
    --ico: 40px;
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 24px;
    align-items: center;
    height: 56px;
    border-radius: var(--br);
    position: relative;
    z-index: 0;
    /* overflow: hidden */
}

.ds-icono-input {
    width: var(--ico);
    height: 100%;
    color: var(--ds-star);
    font-size: .7rem;
    position: absolute;
    right: 0;
    cursor: pointer;
    z-index: 1
}

.ds-input-box {
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%
}

.ds-label {
    font-family: var(--ds-font);
    font-size: 1rem;
    color: var(--ds-dark)
}

.ds-input {
    width: 100%;
    height: 40px;
    border: 0
}

.ds-form-group .ds-label {
    position: absolute;
    top: 21px;
    left: 12px;
    font-size: .9rem;
    text-transform: uppercase;
    font-weight: bolder;
    transition: all .3s ease
}

.ds-form-group .ds-input {
    --mi: 3px;
    position: absolute;
    bottom: var(--mi);
    left: var(--mi);
    border-radius: var(--br);
    width: calc(100% - calc(var(--mi) * 2));
    height: calc(100% - calc(var(--mi) * 2));
    background-color: rgba(var(--ds-star-rgb), .0425);
    padding: 0 7px;
    padding-top: 24px;
    padding-right: var(--ico);
    padding-bottom: 9px;
    transition: all .3s ease
}

.ds-form-group .ds-input:focus {
    outline: 0;
    border: 0;
    box-shadow: 0 0 0 2px var(--ds-star)
}

.ds-form-group .ds-input.ds-active+.ds-label,
.ds-form-group .ds-input:focus+.ds-label {
    top: 9px;
    color: var(--ds-star);
    left: 9px;
    font-size: .7rem
}

label[role=toggle-password] input[type=checkbox] {
    display: none
}

.ds-button {
    background-color: var(--ds-star);
    color: var(--ds-white);
    height: 48px;
    width: 100%;
    border-radius: 9px;
    outline: 0;
    border: 0;
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s ease
}

.ds-button:focus {
    border: 0;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(var(--ds-blue-rgb), .4)
}

.ds-connect-text .ds-text .ds-icono {
    font-size: .9rem
}

.ds-button-gradient {
    background-image: linear-gradient(to right, var(--ds-blue), #00638a, #008ea3, #00b9ab, var(--ds-green))
}

.ds-button-gradient:focus {
    box-shadow: 0 0 0 3px rgba(var(--ds-green-rgb), .7)
}

.ds-input.ds-error {
    background-color: rgba(var(--ds-red-rgb), .0725)
}

.ds-input.ds-error+.ds-label,
.ds-input.ds-error:focus+.ds-label,
.ds-input.ds-error~.ds-icono-input {
    color: var(--ds-red)
}

.ds-input.ds-error:focus {
    box-shadow: 0 0 0 2px var(--ds-red)
}

.ds-title-login {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: bolder;
    margin-top: 40px;
    background: -webkit-linear-gradient(360deg, var(--ds-blue), #00638a, #008ea3, #00b9ab, var(--ds-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ds-link-login {
    font-size: 1rem;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: bolder
}

.ds-loading-google {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    justify-content: center
}

.ds-loading-google:not(.ds-hidden)~* {
    display: none !important
}

.ds-spinner-google {
    border: 4px solid rgba(0, 0, 0, .1);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border-left-color: #4285f4;
    animation: ds-spin-color 1s cubic-bezier(.68, -.55, .27, 1.55) infinite
}

@keyframes ds-spin-color {
    0% {
        transform: rotate(0)
    }

    25% {
        border-left-color: #db4437
    }

    50% {
        border-left-color: #f4b400
    }

    75% {
        border-left-color: #0f9d58
    }

    100% {
        transform: rotate(360deg);
        border-left-color: #4285f4
    }
}

.ds-spinner-box {
    position: relative;
    z-index: 0;
    width: fit-content
}

.ds-spinner-box [data-network=google] {
    position: absolute;
    inset: 0;
    margin: auto;
    box-shadow: none;
    transform: scale(1.7)
}

.ds-title-login.ds-dark {
    color: var(--ds-dark);
    background: 0 0;
    -webkit-text-fill-color: unset
}

.ds-lowercase {
    text-transform: unset
}

.ds-button-group {
    position: relative;
    z-index: 0;
    display: flex
}

.ds-button-circle {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    overflow: hidden;
    margin: auto
}

.ds-button[role=action]:not(.ds-hidden)~* {
    display: none !important
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .ds-login-box {
        flex-direction: column-reverse;
        height: auto
    }

    .ds-login-item {
        width: 100%;
        padding: 24px
    }

    .ds-login-presentation {
        height: 200px;
        flex: unset;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .ds-login-box {
        height: auto;
        min-height: 100%
    }

    .ds-login-item {
        width: 100%;
        padding: 24px;
        height: auto
    }

    /* .ds-login-form {
        width: 480px;
        left: 0;
        position: absolute;
        min-height: 100%;
    } */

    .ds-login-presentation {
        position: fixed;
        z-index: -1;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }
}

@media (max-width: 575.98px) {
    .ds-login-box {
        flex-direction: column-reverse;
        height: auto
    }

    .ds-login-item {
        width: 100%;
        padding: 16px
    }

    .ds-login-presentation {
        height: 64px;
        flex: unset
    }

    .ds-form {
        width: 280px
    }

    .ds-login-tabs .ds-link {
        width: 128px;
        font-size: .9rem;
        height: 40px
    }

    .ds-connect-text {
        padding: 0 12px
    }

    .ds-connect-text .ds-text {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        font-size: .7rem;
        text-transform: uppercase
    }

    .ds-connect-text .ds-text .ds-icono {
        font-size: .7rem;
        width: 28px;
        height: 28px
    }

    .ds-login-form {
        min-height: unset;
        justify-content: flex-start;
        height: 0;
        flex: 1;
        /* overflow-y: scroll; */
    }

    .ds-title-app {
        font-size: .9rem
    }

    .ds-title-app+.ds-text,
    .ds-title-login+.ds-text {
        font-size: .7rem
    }

    .ds-title-login {
        font-size: .9rem;
        margin-top: 24px
    }

    .ds-lista-networks .ds-icono {
        width: 48px;
        height: 48px
    }

    .ds-form-group {
        margin-bottom: 12px
    }

    .ds-link-login {
        font-size: .7rem;
        text-transform: uppercase;
        font-weight: bolder;
        margin-top: 12px
    }
}



.ListForm {
    display: flex; justify-content: space-evenly; width: auto; flex-wrap: wrap;
}

.SubForm {
    display: flex; flex-direction: column; width: 320px; height: auto; margin: 5px 10px;
}

.BtnFomReg {
    width: 320px; margin: 0 auto;
}

@media (max-width: 360px) {
    .SubForm, .BtnFomReg {
        width: 100%;
    }
}