/* Reset CSS agar konsisten di semua browser */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    background-color: #ffffff;
    width: 350px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.2); /* Efek bayangan melayang */
}

h2 {
    color: #333;
    text-align: center;
    margin-bottom: 5px;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 600;
    font-size: 14px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease; /* Animasi saat diklik */
}

/* Efek saat input diklik (Focus) */
.input-group input:focus {
    border-color: #764ba2;
    outline: none;
    box-shadow: 0 0 5px rgba(118, 75, 162, 0.2);
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 20px;
}

.options a {
    color: #764ba2;
    text-decoration: none;
}

button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

/* Efek saat tombol disentuh mouse */
button:hover {
    opacity: 0.9;
    transform: translateY(-2px); /* Tombol naik sedikit */
}

.footer-text {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #666;
}

.footer-text a {
    color: #764ba2;
    text-decoration: none;
    font-weight: bold;
}