body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-image: url('../gambar/bacgroungregister.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.form-container {
    background: rgba(255, 255, 255, 0.9);
    width: 400px;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #aaa;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

input[type="text"],
input[type="date"],
input[type="password"],
input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background: #1976d2;
    border: none;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #145ca1;
}

.error-message {
    color: red;
    text-align: center;
    margin-bottom: 15px;
}
