body {
    font-family: Arial, sans-serif;
}
/* UAS_Styles.css */

/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

/* Header styles */
h1 {
    text-align: center;
    color: #020202;
    margin-top: 20px;
}

/* Form container */
form {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Label styles */
label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    display: inline-block;
}

/* Input fields */
input[type="text"],
input[type="number"],
input[type="date"],
select {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
}

/* Submit button */
button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #45a049;
}

/* Responsive design */
@media (max-width: 600px) {
    form {
        padding: 15px;
    }
}

.container {
    width: 600px;
    border: 2px solid #201b0d;
    padding: 20px;
    margin: auto;
    background-color: #f9f9f9;
}

.container h2 {
    text-align: center;
    color: #010c0e;
}

table {
    width: 100%;
}

td {
    padding: 8px;
}

input[type="text"], input[type="tel"], textarea {
    width: 90%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
    resize: none;
}

input[type="radio"], input[type="checkbox"] {
    margin-right: 5px;
}

.buttons {
    text-align: center;
    margin-top: 20px;
}

.buttons input {
    padding: 8px 15px;
    border: none;
    background-color: #62d417;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.buttons input[type="reset"] {
    background-color: #de4410;
}
