
.form-submit {
    background-color: #5585ff;
    position: relative;
    background-image: none;
    border: none;
    outline: none;
    color: #7c7a7a;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 30px;
    transition: all ease-out 0.5s;
}

.form-submit .active {
    transition-delay: 1s;
    width: 10px;
}
.form-submit.loading {
    border-radius: 50px;
width: 50px;
height: 50px;
font-size: 0px;
}
.spinner {
    display: block;
    width: 34px;
    height: 34px;
    /* position: absolute; */
    top: 8px;
    margin: 0 auto;
    left: 0;
    right: 0;
    background: transparent;
    box-sizing: border-box;
    border-top: 3px solid black;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-radius: 100%;
    animation-delay: 0.5s;
    animation: spin 0.6s linear infinite;
    transition: all cubic-bezier(0.4, 0, 1, 1) 0.5s;
    animation: spin 0.5s linear infinite;
transition: all linear 0.5s;


}
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
.form-submit{
    background-color: #ffffffab;
    position: relative;
    /* padding: 0.5rem 1.5rem; */
    height: 34px;
    width: 154px;
    background-image: none;
    border: none;
    outline: none;
    color: #7c7a7a;
    font-weight: 500;
    font-size: 0.75em;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 6px;
    transition: all ease-out 0.5s;
}
.form-submit:hover {
    color: black;
}



.w-full {
    width: 100%;
}


.text-gray-500 {
    --tw-text-opacity: 1;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
}

.leading-normal {
    line-height: 1.5;
}
.text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
}

.px-3 {
    padding-left: .75rem;
    padding-right: .75rem;
}
.flex-shrink-0 {
    flex-shrink: 0;
}
.flex {
    display: flex;
}
.items-center {
    align-items: center;
}