.body-content {
    background: linear-gradient(270deg, #ff8b8b, #73b8ff);
    background-size: 600% 600%;
    position: relative;
    min-height: calc(100vh - var(--footer-height));
    overflow-x: hidden;
    overflow-y: hidden;
    animation: moveGradient 15s ease infinite;
}

html,
body {
    height: 80vh;
    margin: 0;
    padding: 0;
    background: linear-gradient(270deg, #ff8b8b, #73b8ff);
    background-size: 600% 600%;
    animation: moveGradient 15s ease infinite;
}

@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
.login-page {
    width: 545px;
    margin: 170px auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

#login-form {
    position: relative;
    z-index: 2;
}

.login-box {
    width: 400px;
    height: 550px;
    background: rgba(255, 255, 255, 0.397);
    padding: 51px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    box-shadow: 8px 0px 10px rgba(0, 0, 0, 0.2);
}

.login-box-footer{
    background: rgba(255, 255, 255, 0.432);
}

.left-icons,
.right-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.left-icons {
    position: absolute;
    top: 77%;
    transform: translateY(-50%);
    margin-left: 10px;
}

.right-icons {
    position: absolute;
    top: 68%;
    transform: translateY(-50%);
}

.left-icons img {
    transition: transform 0.5s ease;
}

.left-icons img:hover {
    transform: rotate(10deg) scale(1.03);
}

/* ------------------------------------------------------------------ Animation -------------------------------------------------- */
.circle-deco {
    position: absolute;
    background: radial-gradient(circle, #f0f0f0d6, #ffffff00);
    border-radius: 50%;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

.circle-top-left {
    width: 500px;
    height: 500px;
    top: -152px;
    left: -188px;
}

.circle-bottom-right {
    width: 400px;
    height: 400px;
    bottom: 60px;
    right: -284px;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(20px);
    }

    100% {
        transform: translatey(0px);
    }
}

/* ------------------------------------------------------------------ Animation -------------------------------------------------- */


.no-text-spinner {
    text-align: center;
    padding: 45px;
}

.circle-spin {
    width: 30px;
    height: 30px;
    border: 3px solid #3498db;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
