﻿/*==========================LOGIN/REGISTER==================================*/
.auth-container {
    /*display: flex;
    justify-content: center;
    align-items: center;*/
    height: 100%;
    overflow: auto;
    position: relative;
    padding: 10px;
    /*background: rgba(13, 8, 26, 1);*/
/*    background: linear-gradient(rgba(11, 7, 16, 0.3), rgba(11, 7, 16, 0.3)), url(../imgs/appbg.jpg) center center / cover no-repeat;*/
}

.ac-bg-img {
    position: fixed;
    opacity: 0.1;
    height: 300px;
    width: auto;
    z-index: 2;
}

    .ac-bg-img img {
        width: 100%;
        height: 80%;
        object-fit: contain;
    }

.acbi-tl {
    top: 10px;
}

.acbi-tr {
}

.acbi-bg {
    opacity: 0.2;
    height: 235px;
}

.acbi-wave {
    position: fixed;
    bottom: -120px;
    color: rgb(71 92 255 / 4%);
    width: 100%;
}

.acbi-gamingbg {
    height: 450px;
    position: fixed;
    z-index: 1;
    opacity: 0.2;
    z-index: 1;
    left: 15%;
    bottom: -5%;
}

    .acbi-gamingbg img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.auth-content-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 40px 30px 20px 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 10;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

    .auth-content-container::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient( to bottom right, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50% );
        transform: rotate(30deg);
        z-index: -1;
    }

    .auth-content-header {
        text-align: center;
        margin-bottom: 40px;
    }

        auth-content-header h5 {
            color: white;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.7);
        }

        .auth-content-header p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
            margin-bottom: 20px;
            margin-top: -20px;
        }

        .auth-content-header .ac-logo-box {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            margin-bottom: 30px;
        }

            .auth-content-header .ac-logo-box .aclb-mg {
                position: relative;
                font-size: 25px;
                /*background: linear-gradient(to right, var(--primary-color), var(--secondar-color));*/
                padding: 10px 10px 5px 10px;
                border-radius: 15px;
                font-weight: bold;
                display: flex;
                gap: 5px;
            }

                .auth-content-header .ac-logo-box .aclb-mg div {
                    display: flex;
                    align-items: center;
                    color: var(--mud-palette-dark-text);
                }

        .aclb-arena {
            position: absolute;
            top: -12px;
            left: 100%;
            transform: translateX(-50%);
            font-size: 13px;
            background: var(--mud-palette-warning);
            padding: 3px 10px;
            border-radius: 11px;
        }

    .auth-content-container .input-group {
        position: relative;
        margin-bottom: 30px;
    }

        .auth-content-container .input-group input {
            width: 100%;
            padding: 15px 10px;
            font-size: 1rem;
            color: white;
            border: none;
            outline: none;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

            .auth-content-container .input-group input:focus {
                background: rgba(255, 255, 255, 0.15);
                border: 1px solid rgba(255, 255, 255, 0.4);
                box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
            }

        .auth-content-container .input-group label {
            position: absolute;
            top: 50%;
            left: 20px;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        /*.auth-content-container .input-group input:valid + label*/
        .auth-content-container .input-group input:not(:placeholder-shown) + label {
            top: 0;
            left: 15px;
            font-size: 0.8rem;
            background: rgba(107, 17, 203, 0.8);
            padding: 0 8px;
            border-radius: 10px;
            color: white;
        }

        .auth-content-container .input-group input:focus + label {
            top: 0;
            left: 15px;
            font-size: 0.8rem;
            background: rgba(107, 17, 203, 0.8);
            padding: 0 8px;
            border-radius: 10px;
            color: white;
        }

        .auth-content-container .input-group input::placeholder {
            opacity: 0 !important;
        }

        .auth-content-container .input-group .password-eye {
            position: absolute;
            text-transform: none;
            right: 0;
            height: 100%;
        }

    .auth-content-container .options {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        font-size: 0.9rem;
    }

    .auth-content-container .remember-me {
        display: flex;
        align-items: center;
        color: rgba(255, 255, 255, 0.8);
    }

        .auth-content-container .remember-me input {
            margin-right: 8px;
            accent-color: #6a11cb;
        }

    .auth-content-container .forgot-password a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .auth-content-container .forgot-password a:hover {
            color: white;
            text-decoration: underline;
        }

    .auth-content-container .auth-content-action-button {
        width: 100%;
        padding: 15px;
        background: linear-gradient(to right, var(--primary-color), var(--secondar-color));
        border: none;
        border-radius: 10px;
        color: white;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

        .auth-content-container .auth-content-action-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .auth-content-container .auth-content-action-button:active {
            transform: translateY(0);
        }

    .auth-content-container .liquid-shape {
        position: absolute;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        animation: liquid 10s linear infinite;
        z-index: -1;
    }

        .auth-content-container .liquid-shape:nth-child(1) {
            top: -70px;
            right: -70px;
            animation-duration: 15s;
        }

        .auth-content-container .liquid-shape:nth-child(2) {
            bottom: -80px;
            left: -60px;
            animation-duration: 12s;
            animation-direction: reverse;
        }

    .auth-content-container .auth-step-back-btn {
        width: 100%;
        margin-top: 8px;
        display: flex;
        gap: 5px;
    }

        .auth-content-container .auth-step-back-btn span {
            font-size: 13px;
        }

            .auth-content-container .auth-step-back-btn span:nth-child(1) {
                color: var(--mud-palette-appbar-text);
            }

            .auth-content-container .auth-step-back-btn span:nth-child(2) {
                font-weight: bold;
                text-decoration: underline;
            }

.terms-btn-wrapper {
    position: fixed;
    bottom: 0;
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

@keyframes liquid {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/*==========================LOGIN/REGISTER==================================*/
