/* Font Utama */
body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden; /* Mencegah scroll */
}

/* Background Image Pantai */
.login-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Menggunakan gambar pantai dari Unsplash, Anda bisa ganti dengan gambar lokal */
    background: url('../../images/banner.jpg') no-repeat center center/cover;
    z-index: -2;
}

/* Overlay Gelap (Agar teks terbaca) */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Kegelapan 40% */
    backdrop-filter: blur(3px); /* Efek blur pada background */
    z-index: -1;
}

/* Kartu Login (Glassmorphism Effect) */
.card-login {
    background: rgba(255, 255, 255, 0.95); /* Putih agak transparan */
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

/* Animasi Masuk */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon Bulat di Header */
.icon-circle {
    width: 70px;
    height: 70px;
    background: #eef2ff; /* Biru sangat muda */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 30px;
}

/* Styling Input Form */
.form-floating > .form-control {
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.form-floating > .form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
    background-color: #f8fbff;
}

.form-floating > label {
    color: #6c757d;
}

/* Tombol Login */
.btn-primary {
    background: linear-gradient(45deg, #0d6efd, #0b5ed7);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* Link Kembali */
.hover-link {
    transition: color 0.3s;
}
.hover-link:hover {
    color: #0d6efd !important;
    text-decoration: underline !important;
}