:root {
    --warna-primer: #0056b3;
    --warna-sekunder: #007bff;
    --warna-latar: #f0f4f8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--warna-latar);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(240,244,248,0.9) 100%);
}

.container-bansos {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 40px;
    width: 600px;
    max-width: 95%;
    position: relative;
    overflow: hidden;
}

.header-resmi {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #002147, #0056b3);
    color: white;
    text-align: center;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-resmi img {
    height: 50px;
    margin-right: 15px;
}

.header-resmi h1 {
    font-size: 12px;
    font-weight: 600;
}

.form-bansos {
    margin-top: 80px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--warna-sekunder);
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.btn-submit {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #218838;
}

.footer-resmi {
    margin-top: 20px;
    text-align: center;
    color: #6c757d;
    font-size: 0.8rem;
}

.lokasi-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    position: relative;
    right: 22px;
}

.lokasi-badge .badge {
    background-color: #17a2b8;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
}