/* Change background color and font family */
html body {
    background: linear-gradient(-135deg,#ffa200,#f07,#0045ff) #f07;
    background-size: 300% 300%;
    animation: gradient 30s linear infinite;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
body, html {
    overflow: hidden;
}
#login{
    max-width: 90%;
}
body.login #login > h1 {
    text-align: center;
    padding: 30px 30px 8px;
    background: #fff;
	border-radius: 10px 10px 0 0;
	position:relative;
	z-index:998;
}

/* Change Width and Height of Logo Image + Add Custom Image File */
body.login #login > h1 a {
    width: 260px;
    height: 24px;
    background-size: contain;
    background-position: center center;
    margin: 0 auto;
    max-width: 100%;
}

/* Add a few changes to the color and style of form itself */
body.login label {
    color: #888;
    display: block;
    font-weight: normal;
    font-size: 12px;
    text-align: left;
}

body.login form {
    color: #000;
    border-radius: 0 0 10px 10px;
    padding: 30px;
	margin-top: 0;
	position:relative;
	z-index:999;
    box-shadow: none;
    border: none;
}
body.login form .input {
    font-weight: normal;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #222;
    background: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
body.login #login form .forgetmenot{
    display: flex;
    align-items: center;
    gap: .5em;
    margin-bottom: 1em;
}
body.login form .forgetmenot label,
body.login form .forgetmenot input{
    margin: 0;
}
.privacy-policy-page-link a.privacy-policy-link,
body.login #backtoblog a,
.login #nav a {
    color: #ffffff;
}
.privacy-policy-page-link a.privacy-policy-link:hover,
body.login #backtoblog a:hover,
body.login #nav a:hover{
    color: #ffffff;
    opacity: .75;
}
.wp-core-ui .button.button-large,
.wp-core-ui .button-primary {
    text-transform: uppercase;
    background: linear-gradient(200deg,#f07,#0045ff) #f07;
    background-size: 200%;
    background-position: 50% 50%;
    padding: 15px 20px 13px;
    color: #FFF;
    border: 0;
    border-radius: 300px;
    font-weight: 700;
    cursor: pointer;
    margin: 0 auto;
    height: auto;
    line-height: 1em;
    text-shadow: none;
    letter-spacing: 0.5px;
    font-size: 15px;
    clear: both;
    transition: all .3s;
}
.wp-core-ui .button.button-large:hover,
.wp-core-ui .button-primary:hover {
    background-size: 200%;
    background-position: 100% 100%;
}
form a,
.wp-core-ui .button,
.wp-core-ui .button-secondary{
    color: #0045ff;
}
.login .button.wp-hide-pw:focus{
    border-color: transparent;
    box-shadow: none;
    outline: none;
}
.login h1.admin-email__heading{
    text-align: center;
}
.login .message, .login .notice, .login .success{
    color: #000;
    margin-bottom: 0;
}