/* ========== GLOBAL ========== */
body {
    margin: 0;
    padding: 0;
    background: #ffb6d5;   /* pink background */
    font-family: Arial, sans-serif;
    overflow: hidden;       /* hide overflowing stars */
}

/* ========== LOGIN BUTTON ========== */
.login-btn {
    position: absolute;
    right: 30px;
    top: 20px;
    padding: 10px 25px;
    background: white;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

/* HAMBURGER BUTTON */
.menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: #fff;
    z-index: 999;
}


/* SLIDE CARD MENU */
.menu-card {
    position: absolute;
    top: 70px;
    right: 20px;
    width: 220px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
}

.menu-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-title {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: bold;
}

.logout-btn {
    margin-top: 12px;
    width: 100%;
    padding: 10px;
    border: none;
    background: #75154D;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}


/* ========== MAIN CONTENT ========== */
.container {
    text-align: center;
    margin-top: 120px;
}

.title-img {
    width: 30%;
    max-width: 250px;
    min-width: 80px;
    margin-top: -90px;
}

@font-face {
    font-family: Montserrat;
    src: url(mentahan/Font/Montserrat/Montserrat-VariableFont_wght.ttf);
}

.text {
    font-weight: bold;
    margin-bottom: 20px;
    font-family: "Montserrat", serif;
    color: #75154D;
    transform: translateX(9px);
}

.form-group {
    margin-bottom: 18px;
    text-align: left;
    width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.form-group label {
    display: block;
    font-size: 12px;     /* ukuran kecil */
    margin-bottom: 5px;  /* jarak dengan input */
    color: #4d0030;      /* warna tulisan */
    font-weight: 600;
}


.form-group input {
    width: 250px;
    padding: 12px;
    border-radius: 30px;
    border: none;
    outline: none;
}

/* ========== OK BUTTON ========== */
.ok-btn {
    margin-top: 20px;
    padding: 10px 40px;
    border: none;
    background: #e1007a;
    color: white;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
}

#nameDisplay {
    font-size: 18px;      /* besarin tulisan */
    font-weight: 700;     /* biar tebal */
    color: #75154D;       /* biar warnanya sama temanya */
    margin-bottom: 5px;   /* beri jarak bawah */
}

/* ========== DECORATIVE STARS ========== */

/* Big solid purple star
.star-big {
    position: absolute;
    bottom: -120px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: #7a0048;
    opacity: 0.85;
    filter: blur(1px);
    clip-path: polygon(
        50% 0%, 
        61% 35%, 
        100% 35%, 
        68% 57%, 
        79% 100%, 
        50% 75%, 
        21% 100%, 
        32% 57%, 
        0% 35%, 
        39% 35%
    );
}

/* White outlines star (thin strokes) */
/* .star-outline {
    position: absolute;
    bottom: 50px;
    right: 200px;
    width: 260px;
    height: 260px;
    border: 2px solid white;
    background: transparent;
    clip-path: polygon(
        50% 0%, 
        61% 35%, 
        100% 35%, 
        68% 57%, 
        79% 100%, 
        50% 75%, 
        21% 100%, 
        32% 57%, 
        0% 35%, 
        39% 35%
    );
    opacity: 0.8;
} */