body {
    font-family: "Arial", sans-serif;
    background: linear-gradient(to left top, #b13bff 30%, #471396 90%) no-repeat
        fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Background Animated Shapes */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Lingkaran */
.shape1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

/* Segitiga */
.shape2 {
    width: 0;
    height: 0;
    top: 60%;
    left: 80%;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-bottom: 130px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    animation: float 15s ease-in-out infinite reverse;
}

/* Lingkaran */
.shape3 {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 20%;
    border-radius: 50%;
    animation: float 18s ease-in-out infinite;
}

/* Segi Lima */
.shape4 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 70%;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: float 22s ease-in-out infinite reverse;
}

/* Segitiga */
.shape5 {
    width: 0;
    height: 0;
    top: 45%;
    left: 45%;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 87px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    animation: float 16s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(20px, 30px) rotate(270deg);
    }
}
.wrapper {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    position: relative;
    z-index: 1;
    padding: 0 10px;
    /* max-height: calc(100vh - 40px); */
    overflow-y: auto;
}
.container-login {
    display: flex;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    @media (max-width: 768px) {
        flex-direction: column;
    }
}
.left-section {
    background: linear-gradient(135deg, #471396 0%, #090040 100%);
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
}
.left-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 30%,
            rgba(255, 204, 0, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(177, 59, 255, 0.15) 0%,
            transparent 50%
        );
    pointer-events: none;
}
.logo {
    width: 70px;
    position: relative;
    z-index: 1;
}
.title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}
.subtitle {
    text-align: center;
    font-size: 14px;
    position: relative;
    z-index: 1;
}
.right-section {
    flex: 1;
    padding: 100px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    @media (max-width: 768px) {
        padding: 50px 40px;
    }
}
.title-form {
    color: #090040;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
.subtitle-form {
    color: #471396;
    line-height: 20px;
    text-align: center;
    font-size: 14px;
}
.form-login {
    width: 100%;
    margin-top: 30px;
}
.btn-login {
    width: 100%;
    background-color: #471396;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
}
.btn-login:hover {
    background-color: #090040;
}
.label-login {
    color: #090040;
    font-size: 13px;
    font-weight: 600;
}
.footer {
    margin-top: 10px;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
}
