﻿.account-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 0;
    overflow: hidden;
    background-color: black; /* dark brown */
   
}

    .account-container::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background: linear-gradient(135deg, #1a1a1a 0%, #5300a0 70%, #6600c5 100%);
        opacity: 0.5;
        z-index: -2;
    }

.image-gradient {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
    z-index: -1;
}

.account-container::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    height: 0;
    width: 30rem;
    box-shadow: 0 0 700px 15px white;
    rotate: -30deg;
    z-index: -1;
}

/* NEW BROWN GRADIENT BOXES */
.brown-gradient-box {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, #8B4513, #5C3317, #3E2723);
    opacity: 0.3;
    z-index: -3;
    filter: blur(150px);
}

/* Position multiple boxes */
.brown-box-1 {
    top: 10%;
    left: 10%;
}

.brown-box-2 {
    bottom: 15%;
    right: 20%;
}

.brown-box-3 {
    top: 50%;
    left: 60%;
}

.account-box {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    max-width: 500px;
    width: 100%;
    color: #e7e7e7;
}

/* Tag box animation */
.tag-box {
    position: relative;
    width: 18rem;
    height: 2.5rem;
    border-radius: 50px;
    background: linear-gradient(to right, #656565, #7f42a7, #6600c5, #5300a0, #757575, #656565);
    background-size: 200%;
    animation: animationGradient 2.5s linear infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    margin: 0 auto 2rem auto;
}

@keyframes animationGradient {
    to {
        background-position: 200%;
    }
}

.tag-box .tag {
    position: absolute;
    inset: 3px;
    background-color: black;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
    cursor: pointer;
}

    .tag-box .tag:hover {
        color: #5300a0;
    }
