@charset "utf-8";
/* CSS Document */

        :root {
            --psf-blue: #003b73;
            --psf-blue-dark: #002d5a;
            --psf-light-blue: #eaf4fc;
            --psf-accent: #00a8e8;
            --page-bg: #f5f7fa;
            --text-color: #30343b;
        }

        body {
            min-height: 100vh;
            margin: 0;
            background: var(--page-bg);
            color: var(--text-color);
            font-family: Arial, Helvetica, sans-serif;
        }

        .site-header {
            background: linear-gradient(
                135deg,
                var(--psf-blue-dark),
                var(--psf-blue)
            );
            border-bottom: 7px solid var(--psf-accent);
        }

        .brand-logo {
            width: 62px;
            height: 62px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 2px solid rgba(255, 255, 255, 0.85);
            border-radius: 50%;
            color: #ffffff;
            font-size: 28px;
        }

        .brand-title {
            margin: 0;
            color: #ffffff;
            font-size: 1.45rem;
            font-weight: 700;
        }

        .brand-subtitle {
            margin: 3px 0 0;
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.92rem;
        }

        .login-section {
            padding: 10px 0 10px;
        }

        .page-title {
            color: var(--psf-blue-dark);
            font-size:24px;
            font-weight: 700;
            letter-spacing: -0.03em;
        }

        .page-description {
            max-width: 700px;
            margin: 16px auto 0;
            color: #555f6c;
            font-size: 1.15rem;
        }

        .service-card {
            height: 100%;
            padding: 42px;
            background: #ffffff;
            border: 1px solid #dde3e9;
            border-radius: 18px;
            box-shadow: 0 10px 30px rgba(0, 45, 90, 0.09);
            transition:
                transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease;
        }

        .service-card:hover {
            transform: translateY(-6px);
            border-color: #b8d9f0;
            box-shadow: 0 18px 42px rgba(0, 45, 90, 0.15);
        }

        .service-icon {
            width: 104px;
            height: 104px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
            border-radius: 50%;
            background: var(--psf-light-blue);
            color: var(--psf-blue);
            font-size: 52px;
        }

        .service-title {
            margin-bottom: 20px;
            color: var(--psf-blue);
            font-size: 1.8rem;
            font-weight: 700;
        }

        .service-text {
            min-height: 120px;
            margin-bottom: 30px;
            color: #454b54;
            font-size: 1.05rem;
            line-height: 1.75;
        }

        .service-button {
            width: 100%;
            min-height: 62px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            border: 0;
            border-radius: 9px;
            background: linear-gradient(
                135deg,
                #0751b5,
                #003b8f
            );
            color: #ffffff;
            font-size: 1.13rem;
            font-weight: 700;
            text-decoration: none;
            transition:
                background 0.2s ease,
                transform 0.2s ease;
        }

        .service-button:hover,
        .service-button:focus {
            background: linear-gradient(
                135deg,
                #003f91,
                #002d70
            );
            color: #ffffff;
            transform: translateY(-1px);
        }

        .service-button .bi-arrow-right {
            transition: transform 0.2s ease;
        }

        .service-button:hover .bi-arrow-right {
            transform: translateX(5px);
        }

        .site-footer {
            padding: 25px 0;
            background: #ffffff;
            border-top: 1px solid #e1e5e9;
            color: #656d77;
            font-size: 0.9rem;
        }

        @media (max-width: 767.98px) {
            .site-header {
                text-align: center;
            }

            .brand-wrapper {
                flex-direction: column;
            }

            .login-section {
                padding: 45px 0 60px;
            }

            .service-card {
                padding: 30px 24px;
            }

            .service-icon {
                width: 88px;
                height: 88px;
                margin: 0 auto 24px;
                font-size: 44px;
            }

            .service-title,
            .service-text {
                text-align: center;
            }

            .service-text {
                min-height: auto;
            }
        }


.taxisnet-info {
    padding: 28px 30px;
    background: #fff8e6;
    border: 1px solid #f2dfaa;
    border-left: 6px solid #f5b400;
    border-radius: 8px;
    color: #343a40;
}

.taxisnet-title {
    margin-bottom: 16px;
    color: #003b73;
    font-size: 1.25rem;
    font-weight: 700;
}

.taxisnet-info p {
    line-height: 1.7;
}

.taxisnet-info ul {
    margin-bottom: 16px;
    padding-left: 22px;
}

.taxisnet-info li {
    margin-bottom: 6px;
}

.taxisnet-info hr {
    margin: 20px 0;
    border-top: 1px solid rgba(0, 59, 115, 0.15);
}

.taxisnet-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    border-radius: 50%;
    background: #f5b400;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

@media (max-width: 575.98px) {
    .taxisnet-info {
        padding: 22px 18px;
    }

    .taxisnet-info .media {
        display: block;
    }

    .taxisnet-icon {
        margin-bottom: 15px;
    }
}

