/* ==========================================================
   CERCA AUTH V2
   ========================================================== */

#authOverlay {
    padding: 14px;
    background: rgba(2, 6, 23, .82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


#authOverlay .cerca-auth-v2 {
    position: relative;

    width: min(100%, 430px);

    padding: 27px 20px 21px;

    border-radius: 27px;

    text-align: center;

    border:
        1px solid
        rgba(56,189,248,.15);

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(14,165,233,.16),
            transparent 38%
        ),
        linear-gradient(
            155deg,
            #111c2e,
            #07101e
        );

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.48);
}


/* MARCA */

.cerca-auth-brand {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 7px;

    margin: 2px 0 15px;

    color: #38bdf8;

    font-size: .67rem;
    font-weight: 950;

    letter-spacing: .17em;
}


.cerca-auth-logo {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            #2563eb,
            #0ea5e9
        );

    box-shadow:
        0 8px 20px
        rgba(14,165,233,.18);
}


.cerca-auth-logo
.material-icons-round {
    font-size: 18px;
}


#authOverlay #authTitle {
    margin: 0;

    color: #f8fafc;

    font-size: 1.35rem !important;
    font-weight: 900;

    letter-spacing: -.03em;
}


.cerca-auth-subtitle {
    max-width: 320px;

    margin: 6px auto 19px;

    color: #64748b;

    font-size: .69rem !important;
    line-height: 1.45;
}


/* GOOGLE */

.cerca-auth-google {
    width: 100%;
    min-height: 49px !important;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    color: #e2e8f0;

    border:
        1px solid
        rgba(148,163,184,.13);

    background:
        rgba(255,255,255,.045);

    font-size: .74rem !important;
    font-weight: 800;

    cursor: pointer;
}


.cerca-auth-google:active {
    transform: scale(.985);
}


.cerca-auth-google-icon {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #111827;

    background: #fff;

    font-size: .82rem;
    font-weight: 950;
}


/* DIVISOR */

.cerca-auth-divider {
    position: relative;

    margin: 17px 0;

    text-align: center;
}


.cerca-auth-divider::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: 50%;

    height: 1px;

    background:
        rgba(148,163,184,.10);
}


.cerca-auth-divider span {
    position: relative;

    padding: 0 10px;

    color: #475569;

    background: #0a1424;

    font-size: .57rem;
}


/* CAMPOS */

.cerca-auth-form {
    display: flex;
    flex-direction: column;

    gap: 9px;
}


.cerca-auth-field {
    width: 100%;
    min-height: 49px;

    padding: 0 11px;

    display: flex;
    align-items: center;

    gap: 9px;

    border-radius: 14px;

    border:
        1px solid
        rgba(148,163,184,.12);

    background:
        rgba(255,255,255,.035);
}


.cerca-auth-field:focus-within {
    border-color:
        rgba(56,189,248,.40);

    box-shadow:
        0 0 0 3px
        rgba(14,165,233,.06);
}


.cerca-auth-field >
.material-icons-round {
    color: #64748b;
    font-size: 19px;
}


.cerca-auth-field input {
    min-width: 0;
    flex: 1;

    height: 47px;
    min-height: 47px !important;

    padding: 0;

    color: #e2e8f0;

    border: 0;
    outline: 0;

    background: transparent;

    font-size: .73rem !important;
}


.cerca-auth-field input::placeholder {
    color: #475569;
}


/* OJO PASSWORD */

.cerca-auth-eye {
    width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;

    padding: 0;

    border: 0;

    display: grid;
    place-items: center;

    color: #64748b;

    background: transparent;
}


.cerca-auth-eye
.material-icons-round {
    font-size: 18px;
}


/* OLVIDÉ PASSWORD */

.cerca-auth-forgot {
    width: max-content;

    min-height: 28px !important;

    margin-left: auto;

    padding: 0 2px;

    color: #38bdf8;

    border: 0;
    background: transparent;

    font-size: .62rem !important;
    font-weight: 750;
}


/* PRINCIPAL */

.cerca-auth-main {
    width: 100%;

    min-height: 49px !important;

    margin-top: 2px;

    border: 0;
    border-radius: 14px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #0ea5e9
        );

    box-shadow:
        0 12px 28px
        rgba(14,165,233,.17);

    font-size: .75rem !important;
    font-weight: 900;
}


/* TOGGLE */

#authOverlay .auth-toggle {
    margin: 17px 0 0;

    color: #64748b;

    font-size: .63rem !important;
}


#authOverlay
.auth-toggle span {
    margin-left: 3px;

    color: #38bdf8;

    font-weight: 850;

    cursor: pointer;
}


/* LEGAL */

.cerca-auth-legal {
    max-width: 310px;

    margin: 15px auto 0;

    color: #334155;

    font-size: .54rem !important;
    line-height: 1.5;
}