.bg-navy{
    background-color: #252f51 !important;
}

.w-100{
    width: 100%;
}

.color-navy{
    color: #252f51;
}

.form-heading{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color:white;
}

.bg-animation {
    background: linear-gradient(90deg, #17212D, #ffffff, #17212D);
    background-size: 600% 600%;
    -webkit-animation: AnimationName 30s ease infinite;
    -moz-animation: AnimationName 30s ease infinite;
    animation: AnimationName 30s ease infinite;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

@media screen and (max-width:1024px) {
    .bg-animation{
        background: transparent;
    }
}

html[data-theme='dark'] .bg-animation {
    background: linear-gradient(90deg, #020617, #0f172a, #020617) !important;
    background-size: 600% 600%;
}

html[data-theme='dark'] .bg-navy {
    background-color: #0f172a !important;
}

html[data-theme='dark'] .color-navy {
    color: #cbd5e1 !important;
}

html[data-theme='dark'] .form-heading {
    color: #f8fafc !important;
}
