@keyframes fadeIn {

    /* beginn of the animation*/
    0% {
        opacity: 1;
    }

    /* end of the animation*/
    100% {
        opacity: 0;
    }
}

.status-message {
    animation-name: fadeIn;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-delay: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.invalid-email-text {
    margin-bottom: 12px;
    align-self: auto;
    background-color: #db4b68;
    color: hsla(2, 27.26%, 88.09%, 1.00);
    font-size: 14px;
    line-height: 30px;
    text-align: center;
  }

.contact-info {
    padding-top: 10px;
}