.feedback>span {
    color: rgb(253, 72, 6);
    animation: fancy-animation 3s linear infinite;
    position: relative;
    font-size: 0.9rem;
    font-weight: 600;
}

.att span {
    position: absolute;
    display: block;
    color: #fff;
    left: unset;
    right: 15px !important;
    top: 8px !important;
    font-size: 15px !important;
}

.att span i.fa .fa-envelope {
    color: #fff;
}

.att span i.fa .fa-check {
    color: green !important;
}

.feedback>span:after {
    content: '...';
    position: absolute;
    top: -13.5px;
    left: 100%;
    font-size: 1.5rem;
    animation: fancy-animation 3s linear infinite;
}

@keyframes fancy-animation {
    0% {
        content: '';
        text-shadow: 0px 0px 10px #ffffff;
    }
    25% {
        content: '.';
        text-shadow: 0px 0px 50px #ffffff;
    }
    50% {
        content: '..';
        text-shadow: 0px 0px 10px #ffffff;
    }
    75% {
        content: '...';
        text-shadow: 0px 0px 50px #ffffff;
    }
    100% {
        content: '....';
        text-shadow: 0px 0px 10px #ffffff;
    }
}

.login {
    position: relative;
    display: flex;
    border-radius: 4px;
}

.inputfield {
    position: relative;
    width: 100%;
    display: flex;
}

.login {
    display: flex;
    justify-content: space-between;
}

.inputfield span {
    position: absolute;
    display: block;
    color: orangered;
    left: 10px;
    top: 8px;
    font-size: 20px;
}

.inputfield input {
    width: 100%;
    padding: 10px 5px 10px 40px !important;
    display: block;
    border: 1px solid #EDEDED;
    border-radius: 0.3px !important;
    transition: 0.2s ease-out !important;
    color: #a1a1a1;
}

.inputfield input:focus .input span i {
    display: none;
}

.inputfield input:focus {
    padding: 10px 5px 10px 10px !important;
    outline: 0;
    border-color: #FF7052 !important;
}

.submit {
    width: 35px;
    height: 35px;
    display: block;
    margin-left: 15px;
    margin-top: 3px;
    background: #fff;
    border-radius: 0px !important;
    border: 1px solid #FF7052;
    color: #FF7052;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s ease-out;
    box-shadow: 0 0 30px rgb(214 215 216 / 60%);
}

.submit:hover,
.submit:focus {
    background: #FF7052;
    color: #fff;
    outline: 0;
}

.feedback {
    position: absolute;
    bottom: -70px;
    width: 100%;
    right: 1px;
    text-align: center;
    color: #fff;
    background: #2ecc71;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: none;
    opacity: 0;
    transition: 0.3s ease-out;
}

.feedback:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(46, 204, 113, 0);
    border-bottom-color: #2ecc71;
    border-width: 10px;
    margin-left: -10px;
}

.mt-100 {
    margin-top: 100px;
}