@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%; /* Pastikan body dan html penuh */
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #004803, #75de64);
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
}

.container-fluid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.login-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    padding: 30px;
    max-width: 450px;
    max-height: 90vh;
    width: 100%;
}
.sub-judul {
    color: #004803;
    font-weight: bold;
    font-size: 20px;
}

.judul {
    color: #004803;
    font-weight: bold;
    font-size: 24px;
}

.username-input,
.password-input,
.name-input, /* Tambahkan untuk Nama */
.confirm-password-input {
    /* Tambahkan untuk Konfirmasi Password */
    background-color: #d9d9d9;
    border-radius: 30px;
    padding: 12px;
    font-size: 16px;
    color: #000000; /* Warna teks */
    width: 100%;
}

.username-input::placeholder,
.password-input::placeholder,
.name-input::placeholder, /* Placeholder untuk Nama */
.confirm-password-input::placeholder {
    /* Placeholder untuk Konfirmasi Password */
    color: #838383; /* Placeholder abu-abu */
}

.username-input:focus,
.password-input:focus,
.name-input:focus, /* Fokus untuk Nama */
.confirm-password-input:focus {
    /* Fokus untuk Konfirmasi Password */
    outline: none;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.5); /* Highlight saat fokus */
}

.btn {
    background: linear-gradient(to right, #004803, #75de64);
    border-radius: 30px;
    font-weight: 700;
    color: white;
    font-size: 16px;
}

button:hover {
    background: linear-gradient(to right, #004803, #75de64);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

/* Media Query untuk layar kecil */
@media (max-width: 768px) {
    .login-card {
        padding: 20px;
    }

    .form-group input {
        padding: 10px;
        font-size: 14px;
    }

    .btn {
        font-size: 16px;
    }
}
