/* Reset beberapa default styling */
body, h2, form {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Styling untuk container */
.container {
    width: 50%;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

/* Heading */
h2 {
    text-align: center;
    margin-bottom: 5px;
}

/* Styling untuk label dan input */
label {
    display: block;
    margin: 5px 0 2px;
    font-weight: bold;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Button submit */
input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

/* Styling untuk alert */
.alert {
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
    text-align: center;
}

.alert.success {
    background-color: #4CAF50;
    color: white;
}

.alert.error {
    background-color: #f44336;
    color: white;
}
/* Styling untuk container login */
.login-container {
    width: 300px;
    margin: 50px auto;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 2px;
    background-color: #f9f9f9;
    text-align: center;
}

/* Form input */
input[type="text"],
input[type="password"],
select {
    width: 100%;
    padding: 8px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Button submit */
input[type="submit"] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

/* Alert for error messages */
.alert {
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
    text-align: center;
}

.alert.error {
    background-color: #f44336;
    color: white;
}
