.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;
    }
}