/* Reset dan font dasar */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* Container form */
.container {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Judul */
h2 {
    text-align: center;
    color: #343a40;
    margin-bottom: 20px;
}

/* Input dan form field */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
}

/* Tombol submit */
button[type="submit"] {
    background-color: #343a40;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #212529;
}

/* Teks bawah */
p {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
}

p a {
    color: #007bff;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

/* Alert */
.alert-success,
.alert-error {
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 15px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
}

/* Responsive */
@media (max-width: 576px) {
    .container {
        padding: 20px;
        margin: 20px;
    }

    button[type="submit"] {
        font-size: 14px;
        padding: 10px;
    }
}
