body {
    width: 100%;
    height: 100%;
}

main {
    min-height: 700px;
    margin-bottom: 80px;
}

footer {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #eee;
    background: #fff;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

footer .links {
    display: flex;
    justify-content: center;
}

footer .links .title {
    font-size: 16px;
    font-weight: 600;
    color: #393D49;
}

footer .links .item a {
    font-size: 14px;
    line-height: 23px;
}

footer .links .item a:hover {
    color: #5FB878;
}

.small-panel {
    position: fixed;
    right: 15px;
    bottom: 120px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.small-panel .item {
    padding: 5px;
    border: 1px solid #2F4056;
    width: 30px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.small-panel .item > i {
    font-size: 22px;
    color: #2F4056;
}

.small-panel .item:hover {
    border-color: #1E9FFF;
}

.small-panel .item:hover i {
    color: #1E9FFF;
}

.user-profile {
    padding: 15px;
    position: fixed;
    right: 0;
    bottom: 80px;
    z-index: 1;
}

.user-profile .btn-login {
    color: #1E9FFF;
}

.user-profile .btn-logout {
    color: #FF5722;
}

.user-profile .name {
    font-weight: 600;
    color: #5FB878;
}

.user-profile.logged .btn-login,
.user-profile.no-logged .btn-logout {
    display: none;
}

.user-profile.logged .btn-logout,
.user-profile.no-logged .btn-login {
    display: inline-block;
}

.login-popup {
    border-radius: 10px;
}

.login-panel {
    min-height: 100px;
    display: flex;
    padding: 15px;
}

.login-panel .left {
    margin-right: 15px;
}

.login-panel .right {
    border-left: 1px solid #eee;
    padding-left: 15px;
}

.login-panel .left .top {
    margin-bottom: 15px;
    display: flex;
}

.login-panel .left .bottom {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.login-panel .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.login-panel .step img {
    width: 150px;
}

.login-panel .step .title {
    font-weight: 600;
    color: #393D49;
}

.login-panel .step1 {
    width: 250px;
}

.login-panel .step2 {
    width: 200px;
}