/**
 *
 * Wp login Stylesheet
 *
 */

body.login {
    background-color: #000;
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
}

a:focus {
    box-shadow: 0 0 0 0px transparent, 0 0 0px 0px transparent !important;
}


/* logo */

body.login div#login h1>a {
    background-image: url(./icons/login-logo.png);
    background-size: contain;
    background-position: center center;
    margin: 0 auto 0px;
    width: 100%;
    height: 150px;
}

body.login div#login h1>a:focus {
    box-shadow: 0 0 0 0px transparent, 0 0 0px 0px transparent;
}

#login {
    padding: 0px;
    position: relative;
    top: -25px;
}

#loginform {
    background-color: transparent;
    border: 0px solid transparent;
    display: flex;
    flex-direction: column;
    padding-bottom: 0px;
}

body.login div#login form#loginform p label,
div.user-pass-wrap>label,
#lostpasswordform>p>label {
    color: #fff;
}

input#user_login,
input#user_pass {
    background-color: transparent;
    border: 0px solid transparent;
    border-bottom: 1px solid #fff;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    color: #fff;
    font-style: italic;
    font-size: 1rem;
    font-weight: 400;
}

input#user_login:focus,
input#user_pass:focus {
    box-shadow: 0 0 0 0px transparent;
    outline: 0px solid transparent;
}

body.login div#login form#loginform p.submit input#wp-submit,
#lostpasswordform>p.submit>input#wp-submit {
    letter-spacing: 1px;
    font-size: 0.8rem;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border: 1px solid #fff;
    background-color: transparent;
    padding: 0.5rem 2.5rem;
    transition: background-color 0.3s ease-in-out;
    -webkit-transition: background-color 0.3s ease-in-out;
    -moz-transition: background-color 0.3s ease-in-out;
    -ms-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
}

#lostpasswordform>p.submit>input#wp-submit {
    font-size: 0.8rem;
}

body.login div#login form#loginform p.submit input#wp-submit:hover,
#lostpasswordform>p.submit>input#wp-submit:hover {
    color: #000;
    background-color: #fff;
}

button.wp-hide-pw {
    transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    opacity: 1;
}

button.wp-hide-pw:hover {
    opacity: 0.5;
}

button.wp-hide-pw>svg {
    stroke: #fff;
}

p.submit {
    display: flex;
    justify-content: center;
    padding: 1rem 0 !important;
}

p#nav,
p#backtoblog {
    display: flex;
    justify-content: center;
}

p#nav>a,
p#backtoblog>a {
    display: flex;
    align-items: center;
    color: #fff !important;
    transition: box-shadow 0.3s ease-in-out;
    -webkit-transition: box-shadow 0.3s ease-in-out;
    -moz-transition: box-shadow 0.3s ease-in-out;
    -ms-transition: box-shadow 0.3s ease-in-out;
    -o-transition: box-shadow 0.3s ease-in-out;
}

p#backtoblog>a>svg {
    padding-right: 1rem;
}

p#nav>a>svg {
    order: -1;
    padding-right: 1rem;
    width: 20px;
    height: 20px;
}

p#nav>a:hover,
p#backtoblog>a:hover {
    color: #fff!important;
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 1px 0 #fff;
}


/*=============================================
=            Lost Password Form            =
=============================================*/

#lostpasswordform {
    background-color: transparent;
    border: 0px solid transparent;
    padding-bottom: 0px
}

#lostpasswordform>p>input#user_login {
    color: #fff;
    font-style: italic;
    font-size: 1rem;
    font-weight: 400;
}


/*=====  End of Lost Password Form  ======*/


/*=============================================
=            Messagges            =
=============================================*/

.login #login_error,
.login .message,
.login .success {
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    padding: 1rem;
}

.login .message {
    border-color: #f3ac13;
}

.login #login_error {
    border-color: #D95D39;
}

.login .success {
    border-color: #7ea172;
}


/*=====  End of Messagges  ======*/