@font-face {
    font-family: "myFont";
    src: url("fonts/Avant Guard Regular.ttf");
}


body {
    font-family: 'myFont', sans-serif;
}

#login {
    width: 355px !important;
}
#loginform div.g-recaptcha {
    margin: 0px;
    padding-bottom: 10px;
}
body.login {
    background: #FFFFFF;
    background-repeat:no-repeat;
    background-attachment:fixed;
    background-position:center;
}

.login a img {
    max-height:100px;
    max-width: 100%;
    padding-bottom: 10px;
    margin: auto;
    display: block;
}

.login #login_error, .login .message, .login .success {
    background: #fff;
    box-shadow: 4px 5px 21px #0000002b;
    border-radius: 5px;
    border: 1px solid #217852;
    text-align: center;
}

/*
.login #login_error, .login .message, .login .success {

    box-shadow: inset 4px 5px 13px #1a3a3b, inset 0px 0px 0px 3px #4a8688;
    border-radius: 10px;
    background-color: white;
    border: none;
}
 */

.login form {
    background: #FFF;
    box-shadow: 4px 5px 21px #0000002b;
    border-radius: 5px;
    padding: 26px 24px 24px;
    border: 1px solid #217852
}

.wp-core-ui .button-primary,.wp-core-ui .button-primary:focus,.wp-core-ui .button-primary:active {
    padding: 10px 20px 10px 20px !important;
    color: #217852 !important;
    border: 1px solid #217852 !important;
    background: none !important;
    -webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	border: 0px;
	text-shadow: none;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-size: 16px !important;
    line-height: 16px !important;
}



.wp-core-ui .button-primary:hover {
    background: #d2d0ce !important;
}

.wp-core-ui .button-primary:disabled {
    color:#6e6e6e !important;
    background: #d6d9d7 !important
}

.login #backtoblog a, .login #nav a {
    color: #FFF;
}
.login #backtoblog a:hover, .login #nav a:hover {
    color:#18443c;
}

input[type="text"], input[type="search"], input[type="radio"], input[type="tel"], input[type="time"], input[type="url"], input[type="week"], input[type="password"], input[type="checkbox"], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], select, textarea {
    border: 1px solid #c5c5c5 !important;
}



input[type="text"]:focus, input[type="search"]:focus, input[type="radio"]:focus, input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, input[type="password"]:focus, input[type="checkbox"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, select:focus, textarea:focus {
    border-color: #217852;
    box-shadow: none !important;
    background: #fcfcea !important;
}



.bg {
    animation:slide 10s ease-in-out infinite alternate;
    background-image: linear-gradient(390deg, #7ccb42  50%, #fff 50%);
    bottom:0;
    left:-25%;
    opacity:.5;
    position:fixed;
    right:-75%;
    top:0;
    z-index:-1;
}

.bg2 {
    animation-direction:alternate-reverse;
    animation-duration:4s;
    transform: translateX(-10%);
}

.bg3 {
    animation-duration:5s;
    transform: translateX(10%);
}

.content {
    background-color:rgba(255,255,255,.8);
    border-radius: 5px;
    box-shadow:0 0 .25em rgba(0,0,0,.25);
    box-sizing:border-box;
    left:50%;
    padding:10vmin;
    position:fixed;
    text-align:center;
    top:50%;
    transform:translate(-50%, -50%);
}

@keyframes slide {
    0% {
        transform:translateX(-10%);
    }

    100% {
        transform:translateX(10%);
    }
}


#toggle-movement {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #78BB1F;
    cursor: pointer;
}

#toggle-movement:hover {
    color: #18443c;
}

#wp-submit{
    margin-top: 15px;
    width: 100%;
}

/* Hide original checkbox */
input[type="checkbox"] {
    position: absolute;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap; /* added line */
}

.custom-checkbox {
    display: inline-block;
    margin-bottom: 0px;
    padding-bottom: 0px;
    position: relative;
}
/* Create a new custom square box */
.custom-checkbox:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background: #FFF;
    border: 1px solid #217852;
    position: relative;
    cursor: pointer;
    transition: background-color 0.5s;
}

/* Style the custom checkbox when the original is checked */
input[type="checkbox"]:checked + .custom-checkbox:before {
    background-color: #217852;
}

/* Add a checkmark when the checkbox is checked */
input[type="checkbox"] + .custom-checkbox:after {
    content: "✔";
    color: #FFFFFF;
    font-size: 14px;
    position: absolute;
    left: 6px;
    top: 4px;
    cursor: pointer;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
    line-height: 14px;
    display: inline-block;
}

input[type="checkbox"]:checked + .custom-checkbox:after {
    opacity: 1;
    transform: scale(1);
}

.login .forgetmenot:focus-within .custom-checkbox::before, .login .pw-weak:focus-within .custom-checkbox::before {
    width: 20px;
    height: 20px;
    background-color: #fcfcea !important;
}

.login .forgetmenot:focus-within .custom-checkbox::after, .login .pw-weak:focus-within .custom-checkbox::after {
    color: #217852 !important;
}

.login .forgetmenot label, .login .pw-weak label {
    line-height: 12px;
    vertical-align: middle;
    margin-left: 5px;
}