﻿:root {
    --primary: #77B5BC;
    --primary-600: #66a7b0;
    --text: #1E2A32;
    --muted: #6B7A86;
    --ring: #cfe4e7;
    --radius: 18px;
    --shadow: 0 12px 28px rgba(16,24,40,.08);
}

.login-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 20px 28px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px
}

@media (max-width:980px) {
    .login-wrap {
        grid-template-columns: 1fr;
        gap: 18px
    }
}

.hero {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 560px;
    box-shadow: var(--shadow);
    background: #fff
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity .8s ease,transform .8s ease;
    display: grid;
    place-items: center
}

    .slide.active {
        opacity: 1;
        transform: none
    }

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.05) contrast(1.05)
}

.slide-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(0,0,0,.18),rgba(0,0,0,.35))
}

.slide-card {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(0,0,0,.06);
    padding: 22px;
    border-radius: 18px;
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 32px rgba(0,0,0,.12)
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff;
    color: #0a3b42;
    font-size: 12.5px;
    border: 1px solid rgba(0,0,0,.06)
}

.slide h2 {
    font-size: clamp(24px,3.2vw,40px);
    margin: 10px 0 8px;
    color: #0a3b42
}

.slide p {
    margin: 0;
    color: #144b54;
    line-height: 1.6;
    font-size: clamp(14px,1.5vw,17px)
}

.dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
    display: flex;
    gap: 10px;
    z-index: 2
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.7);
    outline: 3px solid transparent;
    transition: all .25s ease;
    cursor: pointer
}

    .dot.active {
        background: #fff;
        outline: 3px solid rgba(255,255,255,.55)
    }

.ribbon {
    position: absolute;
    inset: auto 0 0 0;
    height: 60px;
    background: url('../assets/Imagenes/ICONOS-WEB.jpeg') repeat-x center/contain;
    opacity: .25;
    filter: saturate(.9)
}

.login-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px;
    align-self: center
}

    .login-card h1 {
        font-size: 20px;
        margin: 0 0 6px
    }

.hint {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 14px
}

.field {
    margin: 10px 0 12px
}

    .field label {
        display: block;
        font-size: 13.5px;
        color: #3f4e58;
        margin-bottom: 6px
    }

.textbox {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #dbe6ea;
    background: #fbfdfe;
    outline: none;
    transition: border .2s ease,box-shadow .2s ease;
    font-size: 15px
}

    .textbox:focus {
        border-color: var(--primary-600);
        box-shadow: 0 0 0 4px var(--ring)
    }

.muterow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2px 0 16px
}

.link {
    color: #0e5963;
    text-decoration: none;
    font-size: 13px
}

    .link:hover {
        text-decoration: underline
    }

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid transparent;
    background: linear-gradient(180deg,var(--primary),var(--primary-600));
    color: #073038;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: transform .05s ease,box-shadow .2s ease,filter .2s ease;
    box-shadow: 0 10px 20px rgba(119,181,188,.35)
}

    .btn-primary:hover {
        filter: brightness(1.03)
    }

    .btn-primary:active {
        transform: translateY(1px)
    }

.divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 16px 0;
    color: #6B7A86;
    font-size: 12.5px
}

    .divider:before, .divider:after {
        content: "";
        height: 1px;
        background: #e6eef0;
        flex: 1
    }

.quick {
    display: grid;
    gap: 12px
}

.pill {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    background: #fbfdfe;
    border: 1px solid #d4e3e6;
    transition: transform .06s ease,box-shadow .25s ease,border-color .2s ease
}

    .pill:hover {
        transform: translateY(-1px);
        border-color: #c6dde1;
        box-shadow: 0 10px 24px rgba(119,181,188,.18)
    }

.ic {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #e8f4f6;
    display: grid;
    place-items: center;
    color: #1e5660;
    font-weight: 700;
    flex-shrink: 0
}

.txt {
    display: flex;
    flex-direction: column
}

    .txt strong {
        font-size: 14.8px;
        letter-spacing: .2px
    }

    .txt span {
        font-size: 12.6px;
        color: #6B7A86
    }

.arrow {
    margin-left: auto;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid #cfe4e7;
    background: #f3fafb
}

.asp-login .failure {
    color: #b42318;
    font-size: 13px;
    margin-top: 6px
}

.asp-login .row {
    margin-top: 8px
}
