body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.container {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.form-container {
    background-color: #ffffff;
    margin-top: 30px;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    text-align: center;
}

.form-container img.logo {
    width: 100px;
    margin-bottom: 10px;
}

h2 {
    color: #2c3e50;
    margin-bottom: 25px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    display: none;
}

label {
    font-weight: bold;
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #34495e;
    text-align: left;
}

input[type="text"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

input[type="submit"] {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #2980b9;
}

#newReportBtn {
    background-color: #007bff; /* Warna biru elegan */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#newReportBtn:hover {
    background-color: #0056b3; /* Biru lebih gelap saat hover */
    transform: scale(1.05); /* Efek zoom sedikit */
}

#newReportBtn:active {
    background-color: #004494;
    transform: scale(0.98);
}
/* Gaya umum tombol */
#newReportBtn,
#adminBtn {
    display: inline-block;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#newReportBtn:hover,
#adminBtn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

#newReportBtn:active,
#adminBtn:active {
    background-color: #004494;
    transform: scale(0.98);
}

@media (max-width: 600px) {
    .form-container {
        padding: 20px;
        margin: 10px;
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="password"],
    select,
    textarea,
    input[type="submit"] {
        font-size: 16px;
        padding: 12px;
    }

    label {
        font-size: 14px;
    }

    h2 {
        font-size: 20px;
    }
}

#helpBtn {
    display: inline-block;
    background-color: #61100a; /* Hijau muda */
    color: rgb(221, 221, 221);
    text-decoration: none;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    margin-right: 10px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#helpBtn:hover {
    background-color: #680000; /* Hijau lebih tua saat hover */
    transform: scale(1.05);
}

#helpBtn:active {
    background-color: #5f0000;
    transform: scale(0.98);
}

.designer-link {
    position: fixed;
    bottom: 10px;
    right: 15px;
    font-size: 0.75rem;
    color: #6c757d;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.designer-link:hover {
    opacity: 1;
    color: #343a40;
    text-decoration: underline;
}
