* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: url("../../images/bg-login-form.png") no-repeat center center / cover;
    position: relative;
}

/* 💳 Card Login */
.login-card {
    position: relative;
    z-index: 1;
    background: #fff url("../../images/bg-card-login.jpg") center/cover no-repeat;
    border-radius: 15px;
    padding: 60px 30px 40px 30px;
    width: 400px;
    height: 500px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    color: #fff;
    animation: fadeIn 1s ease-in-out;

    /* 🔹 Tambahan garis tepi */
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo pojok kanan atas */
.login-card .logos {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
}

.login-card .logos img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* Input & Tombol */
.login-card input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
}

.login-card button {
    width: 100%;
    padding: 12px;
    background-color: #e01414;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.login-card button:hover {
    background-color: #c50f0f;
}

.login-card a {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    opacity: 0.9;
}

.login-card a:hover {
    text-decoration: underline;
    opacity: 1;
}

/* Gambar tengah atas input */
.center-logo {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.center-logo img {
    width: 320px;
    height: 80px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);

    /* ✨ Efek blur lembut di sisi */
    /* mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%); */
    /* -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%); */
    /* backdrop-filter: blur(6px); */
}
