:root {
    --mandiri-blue: #003D79;
    --mandiri-light-blue: #005BAC;
    --mandiri-yellow: #F9A825;
    --bg-soft: #F4F8FB;
    --text-dark: #1F2937;
    --border-soft: #E5E7EB;
}

/* Reset */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-soft);
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Card Container */
.container {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 61, 121, 0.08);
    width: 100%;
    max-width: 480px;
}

/* Title */
h2 {
    margin: 0 0 30px 0;
    text-align: center;
    color: var(--mandiri-blue);
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* Back link */
a {
    display: inline-block;
    margin-bottom: 25px;
    text-decoration: none;
    font-size: 14px;
    color: var(--mandiri-light-blue);
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

/* Form group */
.form-group {
    margin-bottom: 20px;
}

/* Label */
label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--mandiri-blue);
}

/* Inputs */
select,
input[type="text"],
input[type="file"] {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    font-size: 14px;
    transition: 0.2s ease;
    background: #fff;
}

/* Focus state */
select:focus,
input:focus {
    outline: none;
    border-color: var(--mandiri-light-blue);
    box-shadow: 0 0 0 3px rgba(0, 91, 172, 0.15);
}


/* SELECT DROPDOWN SEARCH */
.search-select {
    position: relative;
}

.search-select input {
    cursor: text;
}

.dropdown {
    position: absolute;
    width: 100%;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    margin-top: 6px;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: none;
    z-index: 1000;
}

.dropdown-item {
    padding: 10px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}

.dropdown-item:hover {
    background: #00529B; 
    color: #ffffff;
}

.dropdown-item small {
    display: block;
    font-size: 12px;
    opacity: 0.7;
}
/* --- */

/* Readonly */
input[readonly] {
    background: #F9FAFB;
    color: #6B7280;
}

/* Button */
button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: var(--mandiri-blue);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
    margin-top: 15px;
}

button:hover {
    background: var(--mandiri-light-blue);
}

button:active {
    transform: scale(0.98);
}

/* Accent highlight (optional badge style) */
.highlight {
    color: var(--mandiri-yellow);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .container {
        padding: 25px;
        border-radius: 14px;
    }

    h2 {
        font-size: 20px;
    }

    button {
        padding: 12px;
    }
}
