* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    background: #eef3fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-wrap {
    width: 100%;
    min-height: 100vh;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-panel {
    width: 100%;
    max-width: 1400px;
    min-height: 760px;
    background:
        radial-gradient(circle at 85% 35%, rgba(0, 68, 184, .18), transparent 25%),
        linear-gradient(135deg, #ffffff 0%, #ffffff 56%, #003fbc 56%, #003fbc 100%);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 45px rgba(0, 32, 96, 0.18);
}

.hero-panel::before {
    content: "";
    position: absolute;
    right: -70px;
    top: -80px;
    width: 360px;
    height: 210px;
    background: #0049d8;
    border-radius: 40px;
    transform: rotate(38deg);
}

.hero-panel::after {
    content: "";
    position: absolute;
    right: 55px;
    top: 210px;
    width: 330px;
    height: 210px;
    background: rgba(0, 20, 90, .35);
    clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
}

.hero-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 70px 80px 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.brand h1 {
    margin: 0;
    font-size: 44px;
    line-height: 1;
    color: #0044bd;
    font-weight: 700;
}

.brand p {
    margin: 8px 0 0;
    color: #1e3761;
    font-size: 14px;
}

.login-card {
    width: 330px;
    background: rgba(255, 255, 255, .96);
    padding: 26px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 35, 110, .25);
}

.login-card h2 {
    margin: 0 0 18px;
    text-align: center;
    color: #003fbc;
}

.login-card input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #d8ddea;
    border-radius: 10px;
    font-size: 14px;
}

.login-card button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #0049d8;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.login-card button:hover {
    background: #00349c;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    padding: 55px 80px 130px;
}

.headline h2 {
    margin: 0;
    font-size: 48px;
    line-height: 1.08;
    color: #061a4f;
    font-weight: 800;
}

.headline h2 span {
    color: #0049d8;
}

.headline p {
    margin-top: 22px;
    max-width: 520px;
    color: #263b63;
    font-size: 16px;
    line-height: 1.7;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    color: white;
}

.feature span {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #0058ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,.75);
}

.feature strong {
    color: white;
    font-size: 15px;
}

.feature p {
    margin: 4px 0 0;
    color: #dce8ff;
    font-size: 13px;
}

.bottom-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 92px;
    background: #003fbc;
    color: white;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 0;
    z-index: 3;
}

.bottom-strip div {
    padding: 18px 24px;
    border-right: 1px solid rgba(255,255,255,.3);
    font-size: 13px;
}

.bottom-strip small {
    color: #cfe0ff;
}

.bottom-strip .tagline {
    background: transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 700;
}

.error {
    color: red;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

.footer {
    text-align: center;
    font-size: 12px;
    color: #777;
    margin-top: 15px;
}

@media (max-width: 900px) {
    .hero-panel {
        min-height: auto;
        background: white;
    }

    .hero-top,
    .hero-content {
        padding: 30px;
        grid-template-columns: 1fr;
    }

    .hero-top {
        flex-direction: column;
        gap: 25px;
    }

    .login-card {
        width: 100%;
    }

    .features .feature {
        color: #061a4f;
    }

    .feature strong {
        color: #061a4f;
    }

    .feature p {
        color: #263b63;
    }

    .bottom-strip {
        position: static;
        grid-template-columns: 1fr;
    }

    .headline h2 {
        font-size: 36px;
    }
}