body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0; /* Latar belakang abu-abu terang */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background: white; /* Latar belakang putih untuk form */
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 400px;
    text-align: center;
}

h2 {
    color: rgb(0, 0, 0); /* Teks hitam */
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: rgb(0, 0, 0); /* Teks abu-abu */
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc; /* Garis abu-abu */
    border-radius: 5px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #000000; /* Garis biru saat fokus */
    outline: none; /* Menghilangkan outline default */
}

.error {
    color: red; /* Teks merah untuk error */
    margin-bottom: 10px;
}

.form-actions {
    display: flex;
    justify-content: center; /* Menyelaraskan tombol di tengah */
}

input[type="submit"] {
    background: #000000; /* Latar belakang hitam untuk tombol */
    color: white; /* Teks putih */
    border: none;
    padding: 10px 20px; /* Padding horizontal untuk tombol */
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    font-size: 16px;
}

input[type="submit"]:hover {
    background: #555; /* Latar belakang abu-abu gelap saat hover */
    transform: translateY(-2px); /* Efek angkat saat hover */
}

.footer {
    margin-top: 20px;
    font-size: 14px;
    color: #777; /* Teks abu-abu untuk footer */
}

.footer a {
    color: #007bff; /* Tautan biru */
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline; /* Garis bawah saat hover */
}