/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Latar belakang halaman */
body {
    background: linear-gradient(135deg, #4a90e2, #145da0);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Kontainer login */
form {
    background-color: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

/* Judul form */
h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #000000;
}

/* Input */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: 0.3s;
    border-color: #00b0ff;
    border-width: medium;

}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #4a90e2;
    outline: none;
}

/* Tombol */
button {
    width: 100%;
    padding: 12px;
    background-color: #4a90e2;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #357abd;
}

/* Link tambahan */
p {
    text-align: center;
    margin-top: 15px;
    color: #555;
}

a {
    color: #4199ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsif ekstra kecil */
@media (max-width: 480px) {
    form {
        padding: 20px;
    }
}
