body {
    background: #f4f7fb;
    font-family: 'Jost', sans-serif;
}

/* HERO BANNER */
.hero-banner {
    height: 290px;
    background: linear-gradient(135deg, #0b3c8c, #1e73e8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-banner::before,
.hero-banner::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    left: -10%;
}

.hero-banner::before {
    top: -70px;
}

.hero-banner::after {
    bottom: -70px;
}

.main-title {
    font-family: 'Jost', sans-serif;
    font-size: 60px;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
    text-shadow: 3px 4px 6px rgb(0 0 0 / 61%);
}

.sub-title {
    font-size: 2.6rem;
    font-weight: bolder;
    color: #ffd700;
    text-shadow: 3px 4px 6px rgb(0 0 0 / 61%);
}

.line {
    width: 60px;
    height: 3px;
    background: white;
}

/* CARD */
.card-custom {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: -70px;
}

.icon-box {
    font-size: 28px;
    color: #0d6efd;
}

.highlight {
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 2px;
}

.btn-pay {
    font-size: 18px;
    padding: 12px;
}

.footer {
    text-align: center;
    padding: 20px;
    color: #777;
    font-size: 14px;
}

@media (max-width: 576px) {
    .main-title {
        font-size: 2.2rem;
    }

    .sub-title {
        font-size: 1.4rem;
    }

    .container {
        margin-top: 80px;
    }
}

.career-desc {
    text-align: justify;
    font-size: 18px;
    margin-bottom: 40px;
}

.container {
    max-width: 1200px;
    margin-top: 45px;
}

.register-seat {
    font-size: 25px;
}

label.error {
    color: red !important;
}

img.logo {
    width: 65px;
    padding-bottom: 5px;
}