/* Variables */
:root {
    --primary: #F893D1;
    --secondary: #957C61;
    --yellow: #F8CD64;
    --black: #000;
}

/* !Login Page */
.outside.simple-theme {
    background-image: none;
    background: linear-gradient(76deg, var(--primary), var(--primary), var(--yellow), var(--secondary));
  background-size: 400% 400%;
  -webkit-animation: homepagegradient 32s ease infinite;
  -moz-animation: homepagegradient 32s ease infinite;
  -o-animation: homepagegradient 32s ease infinite;
  animation: homepagegradient 32s ease infinite;
}

.outside.simple-theme .forgot-password-link,
.outside.simple-theme .forgot-password-link:hover {
    color: var(--black);
}

    .outside.simple-theme .forgot-password-link:hover {
        text-decoration: line-through;
        font-style: italic;
    }

.outside.simple-theme .white-label-logo {
    width: 250px!important;
}

    @-webkit-keyframes homepagegradient {
        0%{background-position:0% 63%}
        50%{background-position:100% 38%}
        100%{background-position:0% 63%}
    }
    @-moz-keyframes homepagegradient {
        0%{background-position:0% 63%}
        50%{background-position:100% 38%}
        100%{background-position:0% 63%}
    }
    @-o-keyframes homepagegradient {
        0%{background-position:0% 63%}
        50%{background-position:100% 38%}
        100%{background-position:0% 63%}
    }
    @keyframes homepagegradient {
        0%{background-position:0% 63%}
        50%{background-position:100% 38%}
        100%{background-position:0% 63%}
    }

/* !Bard */
.bard-fieldtype .ProseMirror p[data-bard-class="lead"] {
    font-size: 1.3em;
}
