body {
    font-family: Arial, sans-serif;
    background-color:#DFF8FF;
}

header {
    background-color: #990000;
    color: white;
    padding: 10px 0;
    text-align: center;
	width: 100%;
	margin: 0;
}

footer {
    background: linear-gradient(to bottom, #cc3333, #990000);
    color: #fff;
    padding: 20px;
    text-align: center;
	margin: 0;
	width: 100%;
	box-sizing: border-box;
	border: none;
	position: relative;
	bottom: 0;
	left: 0;
	right: 0;
}

form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffeb3b;
    border-radius: 2px;
    box-sizing: border-box;
    border: 7px solid #cccccc;
}

form label {
    display: block;
    margin-bottom: 5px;
}

form input, form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #ffffff; /* Background yang konsisten */
    border: 1px solid #ccc;
    height: 40px;
    line-height: 20px;
    display: block;
}

/* Hilangkan tampilan default dropdown pada Webkit */
form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #ffffff; /* Ganti warna latar belakang dropdown */
    border: 1px solid #ccc;
    height: 40px;
    padding-right: 30px; /* Ruang untuk panah */
    cursor: pointer;
}

/* Menambahkan gambar panah dropdown */
form select:after {
    content: '\25BC'; /* Unicode untuk panah bawah */
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

form input[type="submit"] {
    background-color: #990000;
    color: white;
    border: none;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #cc3333;
}