@font-face {
    font-family: main;
    src: url('../assets/main.ttf');
}
body {
    margin: 0;
    font-family: main;
    color: #FFF;
    background-color: #000;
}
.widget {
    border-radius: 15px;
    /*box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);*/
    display: inline-block;
    padding: 10px;
}
.welcome {
    width: 300px;
    height: fit-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.welcome p {
    margin-top: 40px;
    margin-bottom: 40px;
    z-index: 2 !important;
}
.welcome .account {
    width: 100%;
    height: 40px;
    text-align: left;
    background-color: #222;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    overflow: hidden !important;
    position: relative;
}
.welcome .account.button {
    padding-top: 18px;
    padding-bottom: 0;
    text-align: center;
}
.welcome .account img:not(.bg) {
    width: 40px;
    border-radius: 50px;
    margin-right: 20px;
    margin-bottom: -13px;
    transition: all 0.2s;
    z-index: 20;
    position: absolute;
    background-color: #FFF;
}
.welcome .account text {
    z-index: 2 !important;
    position: absolute;
    top: 20px;
    left: 60px;
}
.welcome .account .bg {
    z-index: 1;
    width: 100px !important;
    filter: blur(30px);
    transform: translate(-50%, -50%);
    border-radius: 100px;
    z-index: 1 !important;
    position: absolute;
}

.welcome .account:hover img:not(.bg) {
    transform: scale(1.1);
}
svg {
    width: 18px;
    height: 18px;
    fill: #FFF;
    margin-bottom: -4px;
    transition: all 0.2s;
}
a {
    color: #FFF;
    text-decoration: none;
    transition: all 0.2s;
}
a:hover svg {
    margin-left: 10px;
}
a:hover {
    margin-left: 10px;
}


.input {
    position: relative;
}
.input input {
    padding: 10px;
    padding-top: 12px;
    width: calc(100% - 20px);
    font-size: 16px;
    border: none;
    background-color: transparent;
    outline: none;
    color: #FFF;
}
.input p {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(1);
    left: 20px;
    font-size: 16px;
    margin: 0;
    transition: all 0.2s;
    pointer-events: none;
}
.input input:focus ~ p, .input input:not(:placeholder-shown) ~ p {
    left: 3px;
    transform: translateY(-50%) scale(0.8);
    top: 0%;
}
.user-box .sb {
    border: none;
    background-color: transparent;
    position: absolute;
    bottom: 16px;
    right: 15px;
}
.user-box {
    width: 100%;
    height: 40px;
    text-align: left;
    background-color: #222;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}
.line {
    border-bottom: #CCC 1px solid;
    height: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: calc(100% + 20px);
    transform: translateX(-10px);
}
.user-box svg {
    width: 25px;
    height: 25px;
    fill: #FFF;
}