body{
    /* background-image: url('../img/upscalemedia-transformed-\(1\).jpeg');
    background-size: 100% 100%;
    background-attachment: fixed;
    background: #000;
    height: 100vh;
    height: 100%;
    width: 100%;
    z-index: 2; */
}
body::after {
    /* content: "";
    position: fixed;
    top: 0;
    height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    background-image: url('../img/upscalemedia-transformed-\(1\).jpeg');
    background-size: 100% 100%; */
}
#wrapper{
    height: 100vh;    
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;  
}

#wrapper .section-dashboard-login .row{
    border: 0.5rem solid #5a1236;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0px 0px 9px 5px #5a1236;
    background: #f1f1f1;
}
#wrapper .section-dashboard-login .row img{
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    max-width: 80%;
}
.container-bg {
    width: 100%;
    height: 100vh;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    
    z-index: -1;
    /* Dark mode colors and gradient */
    background: #121212; /* Fallback for browsers that don't support gradients */
    background: linear-gradient(
        135deg,
        #121212 25%,
        #1a1a1a 25%,
        #1a1a1a 50%,
        #121212 50%,
        #121212 75%,
        #1a1a1a 75%,
        #1a1a1a
    );
    background-size: 40px 40px;

    /* Animation */
    animation: move 4s linear infinite;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 40px;
  }
}

