@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #020d1f;
    overflow: hidden;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(125deg, #020d1f 0%, #052453 100%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="5"/></svg>');
    background-size: 200% 200%, 100px 100px;
    animation: bgMove 20s linear infinite;
    z-index: -1;
}

@keyframes bgMove {
    0% {
        background-position: 0% 0%, 0 0;
    }

    100% {
        background-position: 200% 200%, 100px 100px;
    }
}

.login-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.input-field {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.input-field:focus {
    border-color: #00a8ff;
    box-shadow: 0 0 0 2px rgba(0, 168, 255, 0.2);
}

.submit-button {
    background: linear-gradient(45deg, #00a8ff, #00ff7f);
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 168, 255, 0.4);
}

.kominfo-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="%2300a8ff"/><text x="50%" y="50%" font-size="40" fill="white" text-anchor="middle" dominant-baseline="middle" font-family="Arial, sans-serif">K</text></svg>') no-repeat center center;
    background-size: contain;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.cybersecurity-icon {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero {
    border-radius: 3px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.hero.hero-bg-image::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
    border-radius: 10px;
}

.hero .hero-inner {
    position: relative;
    z-index: 1;
}

.btn.btn-lg {
    padding: 0.55rem 1.5rem;
    font-size: 12px;
}

html[data-bs-theme=dark] .btn-lg,
html[data-bs-theme=dark] .btn-group-lg>.btn {
    padding: 0.55rem 1.5rem;
    font-size: 12px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}