body {
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    background: linear-gradient(180deg, #1f45b8, #0b2a66);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI";
}


main .index-main-body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
}

.login-box {
    width: 100%;
    max-width: 320px;
    background: #fff;
    border-radius: 6px;
    padding: 16px;
    text-align: center;
}

.brand {
    display: flex;
    justify-content: center;
    align-items: center;

}

.brand img {
    width: 260px;
    /* pixel-close to screenshot */
    max-width: 100%;
    height: auto;
    margin-top: 6px;
    /* fine vertical adjustment */
}

.login-title {
    font-weight: 500;
    letter-spacing: 0px;
    margin-bottom: 10px;
    color: #0f2462;
    font-size: 28px;
}

.form-control {
    height: 44px;
    font-size: 14px;
}

.input-group-text {
    background: #fff;
}

.btn-main {
    background: #0b1f5b !important;
    color: #fff !important;
    height: 44px;
    font-weight: 600;
    opacity: 1 !important;
}


.btn-dark {
    height: 44px;
    border-radius: 22px;
}

.small-text {
    font-size: 12px;
    color: #555;
}

.small-text a {
    text-decoration: none;
}

.email {
    font-size: 13px;
    color: #0d6efd;
    margin: 8px 0;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: #000;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}


/* ABOUT PAGE BACKGROUND */
.about-hero {
    background: transparent;
    padding: 30px 0;
    color: #fff;
}

/* White glass container */
.about-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 40px;
}

/* Typography */
.about-title {
    font-weight: 800;
    font-size: 34px;
    margin-bottom: 20px;
}

.about-subtitle {
    font-weight: 700;
    color: #fff;
}

.about-text {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
}

.about-highlight {
    background: rgba(0, 0, 0, 0.25);
    padding: 12px 16px;
    border-left: 4px solid #ffcc00;
    margin-top: 15px;
    border-radius: 6px;
}

/* Image */
.about-image {
    max-width: 85%;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

/* Feature Cards */
.feature-card {
    background: #fff;
    color: #000;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    transition: all .3s ease;
}

.feature-card i {
    font-size: 32px;
    color: #1e44b8;
    margin-bottom: 12px;
}

.feature-card h5 {
    font-weight: 700;
}

.feature-card:hover {
    transform: translateY(-6px);
}


/* PRIVACY POLICY BACKGROUND */
.policy-hero {
    background: transparent;
    padding: 30px 0;
    color: #fff;
}

/* Glass container */
.policy-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 40px;
}

/* Typography */
.policy-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
}

.policy-intro {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 30px;
}

/* Sections */
.policy-section {
    margin-bottom: 22px;
}

.policy-section h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.policy-section ul {
    padding-left: 18px;
}

.policy-section ul li {
    margin-bottom: 6px;
}

/* Highlight block */
.policy-section.highlight {
    background: rgba(0, 0, 0, 0.25);
    padding: 16px;
    border-left: 4px solid #ffcc00;
    border-radius: 6px;
}

/* Date */
.policy-date {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.85;
}