.logo-text {
    position: absolute;
    width: fit-content;
    color: #eefff4;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.login-page-left,
.register-page-left {
    position: relative;
    width: calc(50% - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-content {
    margin: 0 auto;
    width: 520px;
    height: 520px;
}

.left-content h2 {
    margin-bottom: 16px;
}

.left-content p {
    font-size: 14px;
    margin: 0;
}

.left-content #lottieAnimateLogin {
    margin-top: -38px;
}

.login-page-left .svg-container,
.register-page-left .svg-container {
    position: absolute;
    bottom: -360px;
    left: -180px;
    width: 500px;
    height: 500px;
}

.login-page-right,
.register-page-right {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-page-right .svg-container,
.register-page-right .svg-container {
    position: absolute;
    top: -280px;
    right: -200px;
    width: 500px;
    height: 500px;
}

.right-content {
    width: 450px;
    margin: 0 auto;
}

.error-message {
    color: rgba(255, 84, 84, 0.781);
    font-size: 12px;
}

.social-icon-gp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.social-icon-gp .icon-svg {
    width: 33px;
    height: 33px;
}

.login-btn,
.register-btn {
    display: flex;
    justify-content: center;
    width: 160px;
    text-align: center;
    border-radius: 10px;
    margin-top: 15px;
}

.login-btn .icon-svg,
.register-btn .icon-svg {
    margin-right: 6px;
}

.login-page-left .wave-virtical,
.register-page-left .wave-virtical {
    position: absolute;
    top: 50%;
    right: -800px;
    height: 200px;
    width: 1500px;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
}

.back-to-homepage {
    position: absolute;
    background-color: #eefff4;
    cursor: pointer;
    top: 15px;
    right: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding: 5px;
    z-index: 10;
    transition: 0.4s;
}

.back-to-homepage .line {
    width: 26px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: rotate(45deg);
    transition: 0.4s;
}

.back-to-homepage:hover .line {
    transform: rotate(0deg);
}

.back-to-homepage:hover .line::after {
    width: 12px;
    margin-bottom: -3px;
    left: -3px;
    transform: rotate(45deg) translate(3px, 1px);
}

.back-to-homepage:hover .line::before {
    width: 12px;
    display: inline-block;
    margin-bottom: -3px;
    height: 1px;
    left: -3px;
    opacity: 1;
    position: absolute;
    background-color: #000;
    transform: rotate(315deg) translate(5px, -2px);
}

.back-to-homepage .line::before {
    content: "";
    width: 12px;
    height: 1px;
    opacity: 0;
    transition: 0.4s;
}

.back-to-homepage .line::after {
    content: "";
    top: 50%;
    width: 26px;
    height: 1px;
    transform: rotate(270deg);
    background-color: #000;
    position: absolute;
    transition: 0.4s;
}

@media screen and (min-width: 320px) {
    .login-page,
    .register-page {
        flex-direction: column;
    }

    .login-page-left,
    .register-page-left {
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 100vh;
    }

    .login-page-left .svg-container,
    .register-page-left .svg-container {
        bottom: -330px;
        left: -135px;
    }

    .login-page-left .wave-virtical,
    .register-page-left .wave-virtical {
        display: none;
    }

    .login-page-right,
    .register-page-right {
        width: 100%;
        color: white !important;
        height: 100vh;
    }

    .login-page-right .svg-container,
    .register-page-right .svg-container {
        display: none;
    }

    .login-page-right .right-content,
    .register-page-right .right-content {
        padding: 30px 20px 50px 20px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    }

    .login-page-right .right-content h2,
    .register-page-right .right-content h2 {
        color: white !important;
    }

    .login-btn,
    .register-btn {
        border: 2px solid white !important;
        color: white !important;
    }

    .social-icon-gp .icon-svg {
        color: white;
    }
}

@media (min-width: 1100px) {
    .login-page,
    .register-page {
        flex-direction: row;
    }

    .login-page-left,
    .register-page-left {
        overflow: visible;
        position: relative;
        width: calc(50% - 100px);
    }

    .login-page-left .svg-container,
    .register-page-left .svg-container {
        bottom: -360px;
        left: -180px;
    }

    .login-page-left .wave-virtical,
    .register-page-left .wave-virtical {
        display: inline-block;
    }

    .login-page-right,
    .register-page-right {
        width: 50%;
        color: black !important;
    }

    .login-page-right .svg-container,
    .register-page-right .svg-container {
        display: block;
    }

    .login-page-right .right-content,
    .register-page-right .right-content {
        background-color: none;
        box-shadow: none;
    }

    .login-page-right .right-content h2,
    .register-page-right .right-content h2 {
        color: #01c82f !important;
    }

    .login-btn,
    .register-btn {
        border: 2px solid #01c82f !important;
        color: #01c82f !important;
    }

    .login-btn:hover,
    .register-btn:hover {
        color: white !important;
    }

    .social-icon-gp .icon-svg {
        color: #01c82f;
    }
}
