.register-login {
    max-width: 450px;
    padding: 50px 0
}

.register-login form {
    margin-top: 15px;
}

.register-login h1 {
    font-size: 3rem;
    z-index: 100;
    font-family: HelveticaNeueBold;
    color: #D48D33;
    margin-bottom: 0;
}

.register-login h6 {
    color: #808080;
    font-weight: normal;
    margin-bottom: 0;
}

.register-login .form-group {
    margin-bottom: 15px;
}

.register-login label {
    color: #808080;
    font-weight: 700;
    font-size: .8rem;
}

.register-login .form-control {
    border: solid 1px #D48D33;
    background: none;
    outline: none;
    box-shadow: none;
    color: #fff;
    border-radius: 0;
}

.register-login .form-control::placeholder {
    color: #fff;
    font-size: .8rem;
    opacity: 1;
}

.register-login .form-control::-ms-input-placeholder {
    font-size: .8rem;
    color: #fff;
}

.register-login .btnDefault {
    width: 100%;
}

.register-login .register {
    color: #fff;
    margin-top: 30px;
    text-align: center;
    font-size: .8rem;
}

.register-login .register a {
    color: #D48D33;
    text-decoration: underline;
}

.register-login .message {
    color: green;
    margin-bottom: 30px;
    font-size: .8rem;
}

.register-login .message.error {
    color: red
}

#account .profile{
    max-width: 800px;
    padding:50px 15px
}
#account .profile h1{
    display: flex;
    align-items: center;
}
#account .profile h1 .img{
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    display: inline-block;
    margin-right: 30px;
    border:solid 1px #fff;
    position: relative;
}
#account .profile h1 .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#account .profile h1 .img form{
    position: absolute;
    top:0;
    right:0;
    left:0;
    bottom:0;
    display: none;
}
#account .profile h1 .img:hover form{
    display: block;
}
#account .profile h1 .img form:before{
    position: absolute;
    top:0;
    right:0;
    left:0;
    bottom:0;
    content:"";
    background-color: rgba(0,0,0,.75);
}
#account .profile h1 .img form input{
    position: absolute;
    top:0;
    right:0;
    left:0;
    bottom:0;
    opacity: 0;
}
#account .profile h1 .img form .ic{
    position: absolute;
    top:50%;
    left:50%;
    color:#fff;
    transform: translate(-50%,-50%);
    position: relative;
    pointer-events: none;
}
#account .profile h1 .name{
    font-family: HelveticaNeueBold;
    color: #D48D33;
}
#account .profile h1 .name a{
    font-size: 1rem;
    font-family: dmSans;
    color: #fff;
}
#account .profile .error{
    color:#ff0000
}
#account .profile h2{
    font-family: HelveticaNeueBold;
    color: #D48D33;
    margin-top: 30px;
}
#account .profile .orders{
    color:#fff
}
#account .profile .orders .row > div{
    margin-top: 30px;
}
#account .profile .orders img{
    width: 100%;
}
#account .profile .orders h3{
    font-family: HelveticaNeueBold;
}
#account .profile .orders h5{
    font-family: HelveticaNeueBold;
    color: #D48D33;
    font-size: .8rem;
}

#account .profile .orders .btnDefault{
    white-space: nowrap;
    font-size: .8rem;
}

#account .profile .orders .expiry_date{
    font-size: .8rem;
    margin-top: 15px;
}

@media (orientation: portrait) {
    #account .profile .orders h6{
        font-size: .8rem;
        margin: 0;
    }
    #account .profile .orders h3{
        font-size: .8rem;
        margin-bottom: 5px;
    }
    #account .profile .orders .expiry_date{
        margin-top: 5px;
    }
    #account .profile .orders .btnDefault{
        padding:0 15px
    }
}