/* ------- SHESAYS LOG IN PAGE -------- */

/* ------- Animation --------- */

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

@keyframes fadeUpSlow {
    from {
        opacity: 0;
        transform: translateY(3rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#loginform {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeUpSlow;
}
  
@keyframes Fadeinfromright {
    from {
        opacity: 0;
        transform: translateX(3rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ------ Login Styling ------ */

body.login {
    /* height:auto; */
    position: relative;
}
@media screen and(max-width:600px){
    body.login {
        height:auto;
    } 
}
#login {
    z-index: 4;
    position: inherit;
    top: 0;
    border: 0;
    left: 0;
    right: 0;
}
.login a:hover {
    color: #000 !important;
}
@keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}


.area{
    position: absolute;
    background: linear-gradient(-45deg, #fed600, #fff7c7, #fff7c7,#fff7c7, #fed600);
	background-size: 400% 400%; 
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
   
}

.bubbles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bubbles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background-image: url('/wp-content/uploads/2020/06/bubble-1.svg');
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.bubbles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.bubbles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.bubbles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.bubbles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.bubbles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.bubbles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.bubbles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 3s;
}

.bubbles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 2s;
    animation-duration: 45s;
}

.bubbles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.bubbles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

#login h1 a {
    background: url('/wp-content/uploads/2020/06/she_says_logo_2020-2-1.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 5rem;
    width: 16rem;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: Fadeinlogo;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    margin: 0 auto 1.5rem;
}

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

#login > p {
    font-family: 'museo-sans', sans-serif;
}

.login form {
    background-color:transparent;
    box-shadow: none;
    border:none;
}

.login input[type="text"],
.login input[type="password"] {
    border: 1px solid #fff;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    width:100%;
    margin-top: .5rem;
    padding:.5rem;
    font-family: 'museo-sans', sans-serif;
    transition: .3s ease-in-out;
}

.login input[type="text"]:focus,
.login input[type="password"]:focus {
    border: 1px solid #f0f2f6;
    outline: none;
}

.login label,
.description.indicator-hint {
    font-family: 'museo-sans', sans-serif;
    color: #000;
}

.login input[type="checkbox"]::before {
    content:none;
}
.login input[type="checkbox"] {
    -webkit-appearance: none;
    width: 1.2rem;
    background-color: #fff;
    height: 1.2rem;
    border-radius: 36px;
    border: 2px solid #fff;
    margin-right: 0.5rem;
    padding: 0;
    margin-bottom: 0;
    position: relative;
}
.login input[type="checkbox"]:checked::after {
    content:'\2713';
    color: #000;
    position: absolute;
    right: -2px;
    bottom: -11px;
    background-image: none;
    width: 1.2rem;
    height: 1.2rem;
}
.login input[type="checkbox"]:hover,
.login input[type="checkbox"]:checked,
.login input[type="checkbox"]:focus{
    /* background-color: #0BA1D6; */
}

.login input[type="submit"]{
    display: inline-block;
    position: relative;
    font-family: 'museo-sans', sans-serif;
    /* font-size: 2.1rem; */
    font-weight: 900;
    text-align: center;
    vertical-align: middle;
    background-color: transparent;
    padding: .8rem 4.6rem;
    transition: color .3s, background-color .3s;
    white-space: nowrap;
    color: #000;
    border: 2px solid #000;
}

.login .button-primary:hover,
.login .button-primary:focus{
    color: #fed600!important;
    background-color: #000!important;
    border-color: #000;
}


.login #nav a,
.login #backtoblog a,
.login a{
    color:#000;
    text-decoration: none;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: Fadeinfromright;
    transition: all .3s ease;
}
.login #nav a:hover,
.login #backtoblog a:hover,
.login a:hover,
.login #nav a:focus,
.login #backtoblog a:focus,
.login a:focus {
    /* color: #0BA1D6; */
}

.privacy-policy-page-link {
    margin-bottom: 0 !important;
    padding-bottom: 5rem;
}

@keyframes Fadeinfromright {
    from {
        opacity: 0;
        transform: translateX(3rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ------- Login Error --------- */

.login #login_error,
.login p.message {
    border-left-color: #000;
    background-color: transparent;
    box-shadow: none;
    margin-left:23px;
    color: #000;
    font-family:'museo-sans', sans-serif;
}
.login #login_error a{
    color: rgb(255, 0, 0);
}
.login #login_error a:hover{
    color: rgb(255, 0, 0);
}

.login .button.wp-hide-pw {
    margin: 12px 0!important;
    right: 0!important;
    bottom: 0!important;
    top: 0!important;
}