<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Add your custom styles here... */

@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400');
body.login {
    background-image: url('../images/bg-login.png');
    background-repeat: repeat;
    background-attachment: fixed;
    font-family: -apple-system, "Source Sans Pro", BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif
}

.login h1 a {
    background-image: url('../images/woo360-logo_xl.png');
    background-size: contain;
    width: 100%;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: .1s;
    animation-name: fadeInUp;
}

.login form, .login .message, .login #id, .login #backtoblog  {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: .7s;
    animation-name: fadeIn;
    background-color: rgba(255, 255, 255, .45);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.login .message, #loginform {
    border-left: none;
    border-bottom: 3px solid #1DA4DD;
    background-color: rgba(255, 255, 255, .45);
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
}

#loginform #wp-submit {
    border: none;
    border-radius: 0px;
    color: #fff;
    background-color: #1DA4DD;
    text-shadow: none;
    font-weight: 400;
    font-size: 14px;
    -webkit-box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.2);
-moz-box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.2);
box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.2);
transition: .3s;
}

#loginform input {
    padding-right: 12px;
    padding-left: 12px;
}

#loginform #wp-submit:hover {
    -webkit-box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.45);
-moz-box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.45);
box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.45);
background-color: #2F72B7;
}




@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.widget_product_search button {
    margin-top: 10px;
    float: right;
}</pre></body></html>