.authentication {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.authentication > .info {
    width: 50%;
    height: 100%;
background: #0088FF;
background: linear-gradient(90deg, rgb(0, 136, 255) 0%, rgb(0, 218, 107) 100%);
    float: left;
    position: relative;
}


.authentication > .info > .content {
    margin-top: -200px;
    margin-left: -200px;
    width: 400px;
    height: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
}

.authentication > .login > .content {
    margin-top: -300px;
    margin-left: -200px;
    width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
}

.authentication > .info > .content > .item,
.authentication > .login > .content > .item {
    margin: 20px;
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-indent: 30px;
    border-radius: 30px;
    background: #ffffff;
    color: #0088FF;
}

.authentication > .login > .content > .item > label {
    width: 100px;
    text-indent: 0;
    display: block;
    float: left;
}
.authentication > .login > .content > .item > input {
    width: calc(100% - 100px);
    height: 100%;
    float: left;
}

.authentication > .login > .content > .button {
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 18px;
    border-radius: 30px;
background: #0088FF;
background: linear-gradient(90deg, rgb(0, 136, 255) 0%, rgb(0, 218, 107) 100%);
    color: #ffffff;
}

.authentication > .login > .content > .button:hover {
    background: #0088FF;
}

.authentication > .login > .content > .text {
    margin-bottom: 20px;
    width: 100%;
    height: 70px;
    text-align: center;
    font-family: "Arial Black", arial, sans-serif;
    font-size: 55px;
background: #0088FF;
background: linear-gradient(90deg, rgb(0, 136, 255) 0%, rgb(0, 218, 107) 100%);
    background-clip: text;
    color: transparent;
}

.authentication > .login > .content > .image {
    margin: 0 auto 20px auto;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid #B3FCE6;
    position: relative;
    overflow: hidden;
}

.authentication > .login > .content > .image > .image-view {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.authentication > .login > .content > .image > svg {
    margin-top: -50px;
    margin-left: -50px;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
}

.authentication > .login {
    width: 50%;
    height: 100%;
    background: #ffffff;
    float: left;
    position: relative;
    overflow-y: auto;
}

.account-close-button {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: #ffffff;
    position: absolute;
    top: 20px;
    left: 20px;
}

.account-close-button > .icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    left: 10px;
}