* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Fira Code";
}

body {
    background-color: rgb(1, 0, 1);
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#wrapper {
    width: 100%;
    overflow: hidden;
    background: #242324;
    height: 100vh;
    width: 100%;
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transform: scale(0.8);
    opacity: 0;
}

/*-------------------------scrollbar-------------------*/
body::-webkit-scrollbar

/*SIZE*/
    {
    width: 7px;
}

body::-webkit-scrollbar-track {
    background-color: #1f2028;
}

body::-webkit-scrollbar-thumb {
    background-color: #161C24;
    border-radius: 50px;
}

a {
    text-decoration: none;
}

nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
}

.time {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.time p {
    color: rgba(239, 241, 245, 0.92);
    font-family: Fira Code;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.main-acc {
    cursor: pointer;
    width: 199px;
    height: 46px;
    border-radius: 8px;
    background: #3584E5;
    display: flex;
    align-items: center;
    padding-left: 3px;
    padding-right: 3px;
    column-gap: 11px;
    transition: all 0.2s ease-in-out;
}

.main-acc:hover {
    background: #54A0FD;
}

.main-acc:active {
    background: rgba(53, 132, 229, 0.79);
}

.main-acc .img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #D9D9D9;
}

.main-acc img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.name_account {
    color: #FFF;
    font-family: Fira Code;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.acc-name {
    padding-left: 3px;
    padding-top: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-family: Fira Code;
    font-size: 8px;
    font-style: normal;
    font-weight: 450;
    line-height: normal;
}

/*--------------Load----------*/
.loader {
    margin: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(202, 166, 249, 0.85);
    ;
    border-top-color: transparent;
    animation: rot1 1.2s linear infinite;
}

@keyframes rot1 {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes ZoomIn {
    from {

        transform: scale(0.8);
        opacity: 0;
    }

    to {

        transform: scale(1);
        opacity: 1;
    }

}

.animation-status6 {
    animation: ZoomIn 0.3s ease-out forwards;
}

.acc2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 10px;
    transform: scale(0.8);
    opacity: 0;
}

.img2 {
    width: 158px;
    height: 158px;
    border-radius: 50%;
    border: 1px solid #D9D9D9;
}

.img2 img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

#name {
    color: rgba(255, 255, 255, 0.62);
    font-family: Fira Code;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

#hello {
    color: #D9D9D9;
    font-family: Fira Code;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
@-webkit-keyframes BackIn {
    from { 
        background: #242324;
    }

    to {
        background: #12101C;
    }

}

.animation-status7 {
    animation: BackIn 0.5s ease-out forwards;
}