* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================
   Landing Page
========================= */

.landing-page {
    width: 100%;
    min-height: 100vh;

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

    padding: 50px 20px;

    background:
        radial-gradient(
            circle at 85% 85%,
            rgba(0, 150, 136, 0.35),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #0c1830 0%,
            #16273c 55%,
            #064c4b 130%
        );

    color: #ffffff;
}


/* =========================
   Main Container
========================= */

.portal-container {
    width: 100%;
    max-width: 900px;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* =========================
   Badge
========================= */

.portal-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 10px 18px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.10);

    font-size: 15px;
    font-weight: 600;

    margin-bottom: 30px;
}

.badge-icon {
    width: 34px;
    height: 34px;

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

    border-radius: 10px;

    background: #19d3c5;
    color: #062b31;

    font-weight: bold;
}


/* =========================
   Hero
========================= */

.hero {
    text-align: center;
}

.hero h1 {
    font-size: 50px;
    font-weight: 700;

    margin-bottom: 5px;
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;

    color: #27dfce;

    margin-bottom: 18px;
}

.hero p {
    color: #d3d9e4;

    font-size: 16px;

    margin-bottom: 50px;
}


/* =========================
   Cards
========================= */

.portal-cards {
    width: 100%;

    display: flex;
    justify-content: center;

    gap: 20px;
}

.portal-card {
    width: 280px;
    min-height: 235px;

    padding: 28px;

    background: #ffffff;
    color: #101828;

    border-radius: 16px;

    display: flex;
    flex-direction: column;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.portal-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18);
}


/* =========================
   Card Icon
========================= */

.card-icon {
    width: 48px;
    height: 48px;

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

    border-radius: 12px;

    font-size: 22px;

    margin-bottom: 24px;
}

.employee-icon {
    background: #e9faf7;
    color: #009f91;
}

.admin-icon {
    background: #f0efff;
    color: #5b42ff;
}


/* =========================
   Card Content
========================= */

.portal-card h3 {
    font-size: 18px;
    font-weight: 700;

    margin-bottom: 8px;
}

.portal-card p {
    font-size: 14px;
    line-height: 1.5;

    color: #667085;

    margin-bottom: 18px;
}


/* =========================
   Links
========================= */

.portal-card a {
    margin-top: auto;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
}

.employee-link {
    color: #009b8e;
}

.admin-link {
    color: #5138ee;
}

.portal-card a span {
    font-size: 20px;

    transition: transform 0.2s ease;
}

.portal-card a:hover span {
    transform: translateX(4px);
}


/* =========================
   Footer
========================= */

.security-text {
    margin-top: 38px;

    text-align: center;

    font-size: 12px;

    color: #73849c;
}



/* =========================
   Tablet
========================= */

@media (max-width: 768px) {

    .hero h1 {
        font-size: 40px;
    }

    .hero h2 {
        font-size: 38px;
    }

}


/* =========================
   Mobile
========================= */

@media (max-width: 650px) {

    .landing-page {
        align-items: flex-start;

        padding-top: 40px;
        padding-bottom: 40px;
    }

    .portal-badge {
        margin-bottom: 25px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 14px;

        margin-bottom: 35px;
    }

    .portal-cards {
        flex-direction: column;
        align-items: center;
    }

    .portal-card {
        width: 100%;
        max-width: 350px;
    }

    .security-text {
        max-width: 350px;

        line-height: 1.6;
    }

}