/* Reset ringan */
* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f7f9fc;
    margin: 0;
    padding: 20px;
    color: #333;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
}

input[type="text"],
input[type="date"],
input[type="file"],
select,
textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1.8px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    resize: vertical;
}

input[type="text"]:focus,
input[type="date"]:focus,
input[type="file"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
}

textarea {
    min-height: 80px;
}

button[type="submit"],
button[type="button"] {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

button[type="submit"]:hover {
    background: #2980b9;
}

button[type="button"] {
    background: #95a5a6;
}

button[type="button"]:hover {
    background: #7f8c8d;
}

/* Inline style for nomor_hp input */
form > label[for="nomor_hp"],
form > input[name="nomor_hp"] {
    display: block;
    margin-bottom: 10px;
}

/* Status lokasi */
#statusLocation {
    font-style: italic;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: -15px;
    margin-bottom: 25px;
    text-align: center;
}
