/* Tambahan untuk video background */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
}

/* Form UI */
body.login-page {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-container {
    background-color: rgba(0, 123, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    color: white;
    max-width: 400px;
    width: 90%;
}

.form-container input[type="text"],
.form-container input[type="password"],
.form-container input[type="submit"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
}

.form-container input[type="submit"] {
    background-color: #0056b3;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.form-container .logo {
    width: 80px;
    margin-bottom: 15px;
}

.form-container a {
    color: #d0e7ff;
    text-decoration: underline;
}

.error {
    color: #ffdddd;
    background: #ff4444;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 5px;
}
