.custom-login {
    padding: 50px 0;
    
}

.user-profile-info a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.user-profile-info span {
    margin-left: 10px;
}

.user-profile-info .profile-icon-holder {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
}

.user-profile-info .profile-icon-holder i {
    color: #072c49 !important;
}

.user-profile-info:hover .profile-icon-holder {
    background-color: #f5bd17 !important;
}

.custom-login .form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
    
    label {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 20%;
                flex: 0 0 20%;
    }

    input[type="password"],
    input[type="text"] {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 80%;
                flex: 0 0 80%;
    }

    &.remember-row {

        label {
            -webkit-box-flex: 0;
                -ms-flex: 0 0 100%;
                    flex: 0 0 100%;
        }
    }
}

.duxton-user-dashboard {
    padding: 50px 0;
    
    h4 {
        margin: 20px 0 0 0;
    }
}

.private-pages ul {
    list-style-type: disc;
    margin-left: 20px;
}

.custom-login-form__inner {
    width: 700px;
    margin: 0 auto;
    max-width: 100%;
}

.lost-password {
    margin-left: 20px;
}

.login-error {
    color: #ff0303;
}

.header {
    position: relative;
}

.user-profile-info {
    position: fixed;
    top: 45px !important;
    right: 30px;
    color: #fff;
    z-index: 999999999;
}

.logged-in .user-profile-info {
    top: 75px !important;
}

.user-profile-info a {
    color: #fff;
}

.user-profile-info a:hover {
    color: #f5bd17;
}

@media only screen and (max-width: 1024px) {

    .user-profile-info {
        top: 85px !important;
    }
}

@media only screen and (max-width: 768px) {
    
    .user-profile-info {
        top: 21px !important;
        right: 60px;
    }

    .logged-in {

        .user-profile-info {
            top: 65px !important;
        }    
    }

    .scrolled .user-profile-info {
        display: none;
    }
}