body {
            margin: 0;
            font-family: 'Segoe UI', sans-serif;
            background: #f5f7fc;
            color: #222;
        }

        /* HEADER */
        .header {
            width: 100%;
            background: linear-gradient(90deg, #005bda 0%, #0a73ff 100%);
            padding: 28px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-sizing: border-box;
        }

        .header-left {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            color: white;
        }

        .header-left img {
            height: 58px;
        }

        .header-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .header-sub {
            font-size: 13px;
            opacity: 0.9;
        }

        /* CARD */
        .container {
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 20px 20px;
            box-sizing: border-box;
        }

        .card {
            width: 900px;
            background: white;
            border-radius: 22px;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
            padding: 30px 30px;
            box-sizing: border-box;
        }

        .title {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .subtitle {
            font-size: 14px;
            color: #666;
            margin-bottom: 26px;
        }

        .progress {
            width: 100%;
            height: 6px;
            background: #e7e9f4;
            border-radius: 4px;
            margin: 25px 0 40px;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            width: 0%;
            background: #005bda;
            transition: 0.35s;
        }

        .section-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .label {
            font-size: 14px;
            margin-bottom: 6px;
        }

        input,
        select {
            padding: 14px;
            width: 100%;
            border-radius: 8px;
            border: 1px solid #ccc;
            font-size: 14px;
            margin-bottom: 20px;
            box-sizing: border-box;
        }

        .btn {
            background: #005bda;
            color: white;
            border: none;
            padding: 14px 32px;
            font-size: 16px;
            border-radius: 10px;
            cursor: pointer;
            transition: 0.25s;
        }

        .btn:hover {
            background: #0046ad;
        }