/* ==========================================
   OTHER ACCESS PAGE
========================================== */

.other-access-page {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;

    background: linear-gradient(135deg, #eef9e6 0%, #eaf8ef 45%, #dff7ec 100%);

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* BACKGROUND */

.other-access-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.other-access-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MAIN CARD */

.other-access-card {
    width: min(1450px, 100%);
    height: calc(100vh - 4rem);

    position: relative;
    z-index: 2;

    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);

    border-radius: 34px;

    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;

    padding: 2rem;

    box-shadow:
        0 25px 70px rgba(15,23,42,.12),
        0 10px 30px rgba(15,23,42,.06);

    overflow: hidden;
}

/* SIDE */

.other-access-side {
    position: relative;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.other-logo img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.side-line {
    width: 60px;
    height: 6px;
    background: #84cc7a;
    border-radius: 999px;
    margin: 1.3rem 0 1.8rem;
}

.other-access-side h1 {
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.15;
    font-weight: 900;
    color: #073b25;
    margin-bottom: 1rem;
}

.other-access-side p {
    font-size: 1.15rem;
    line-height: 1.55;
    color: #6b7280;
    font-weight: 700;
    max-width: 250px;
}

.side-frog {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 260px;
    height: 300px;
}

.side-frog img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* AREA */

.access-options-area {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* GRID */

.access-options-grid {
    flex: 1;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;

    min-height: 0;
}

.access-type-card {
    position: relative;

    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;

    padding: 1.5rem 1.2rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    text-decoration: none;

    color: #061933;

    transition: .25s ease;
    overflow: hidden;
}

.access-type-card:hover {
    transform: translateY(-5px);
    border-color: #16a34a;
    box-shadow: 0 18px 38px rgba(15,23,42,.1);
}

.access-type-img {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background: #f0fff4;
    margin-bottom: 1rem;
    overflow: hidden;
}

.access-type-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.access-type-card h2 {
    font-size: 1.35rem;
    line-height: 1.15;
    font-weight: 900;
    color: #073b25;
    margin-bottom: .7rem;
}

.access-type-card p {
    max-width: 260px;
    font-size: .95rem;
    line-height: 1.5;
    color: #6b7280;
    font-weight: 650;
    margin: 0;
}

.access-type-card > i {
    position: absolute;
    right: 1.4rem;
    bottom: 1.2rem;
    font-size: 1.4rem;
    color: #00843d;
}

/* HELP BAR */

.access-help-bar {
    margin-top: 1.4rem;

    background: linear-gradient(135deg, #f0fff4 0%, #f8fff6 100%);
    border-radius: 20px;

    padding: 1rem 1.5rem;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.help-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #99d87a;
    color: #fff;

    display: grid;
    place-items: center;
}

.help-icon i {
    font-size: 2rem;
}

.access-help-bar h3 {
    font-size: 1.2rem;
    font-weight: 900;
    color: #007a3d;
    margin: 0 0 .25rem;
}

.access-help-bar p {
    margin: 0;
    color: #6b7280;
    font-weight: 650;
}

.access-help-bar a {
    min-width: 160px;
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;

    border: 1px solid #00843d;
    border-radius: 12px;

    color: #00843d;
    background: #fff;

    font-weight: 900;
    text-decoration: none;
}

/* BACK LOGIN */

.back-login-link {
    margin: 1rem auto 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;

    color: #00843d;
    text-decoration: none;

    font-size: 1.05rem;
    font-weight: 900;
}

/* ==========================================
   RESPONSIVE
========================================== */

/* Notebook pequeño */
@media (max-width: 1200px) {
    .other-access-card {
        grid-template-columns: 250px 1fr;
        gap: 1.2rem;
        padding: 1.5rem;
    }

    .access-type-img {
        width: 92px;
        height: 92px;
    }

    .access-type-card h2 {
        font-size: 1.1rem;
    }

    .access-type-card p {
        font-size: .82rem;
    }

    .side-frog {
        width: 220px;
        height: 260px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .other-access-page {
        padding: 1rem;
    }

    .other-access-card {
        height: calc(100vh - 2rem);
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .other-access-side {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 1rem;
        align-items: center;
        padding: .5rem;
    }

    .other-logo img {
        width: 110px;
    }

    .side-line,
    .side-frog {
        display: none;
    }

    .other-access-side h1 {
        font-size: 1.9rem;
        margin: 0;
    }

    .other-access-side p {
        grid-column: 2;
        font-size: .95rem;
        max-width: none;
        margin: 0;
    }

    .access-options-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: .9rem;
    }

    .access-type-card {
        padding: 1rem .8rem;
    }

    .access-type-img {
        width: 76px;
        height: 76px;
        margin-bottom: .7rem;
    }

    .access-type-card h2 {
        font-size: .95rem;
    }

    .access-type-card p {
        font-size: .75rem;
    }

    .access-help-bar {
        padding: .8rem;
    }

    .access-help-bar p {
        font-size: .85rem;
    }
}

/* Celular */
@media (max-width: 767px) {
    .other-access-page {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }

    .other-access-card {
        height: auto;
        min-height: calc(100vh - 2rem);
    }

    .access-options-grid {
        grid-template-columns: 1fr;
    }

    .other-access-side {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .other-logo img {
        margin: 0 auto;
    }

    .other-access-side p {
        grid-column: auto;
    }

    .access-help-bar {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .help-icon {
        margin: 0 auto;
    }

    .access-help-bar a {
        width: 100%;
    }
}