.loader {
    width: 18px;
    height: 18px;
    /* margin: 0 auto; */
    border-top: 2px solid #292929;
    border-right: 2px solid #efefef;
    border-bottom: 2px solid #efefef;
    border-left: 2px solid #efefef;
    border-radius: 100px;
    animation: spin 1s infinite linear;
}
  
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.disabled {
    opacity: 0.7;
    cursor: default;
    pointer-events: none;
}

@media screen and (min-width: 640px) {
    .sm\:m-20 {
        margin: 2rem 5rem !important;
    }
}

.error-field {
    height: 20px !important;
    color: #d53838;
}

.redirect-message {
    position: fixed;
    bottom: 0;
    left: 0;
    margin-left: 4rem;
    margin-bottom: 3rem;
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    transition: opacity 0.10s linear 0s;
    opacity: 0;
    box-shadow: 0px 8px 10px -5px rgb(0 0 0 / 20%), 0px 16px 24px 2px rgb(0 0 0 / 14%), 0px 6px 30px 5px rgb(0 0 0 / 12%);
}

.redirect-message-left {
    display: flex;
    align-items: center;
    background-color: #333333;
    padding: 0.8rem;
    gap: 3rem;
    padding-right: 3rem;
}

.message-icon {
    padding: 6px;
    border-radius: 50%;
}

.message-icon.success {
    background-color: #00bda3;
}

.message-icon.danger {
    background-color: #d53838;
}

.message-icon > svg {
    width: 12px;
    height: 12px;
    fill: #fff;
}

.redirect-message .x-close {
    background-color: #444444;
    padding: 14.8;
}

.redirect-message .x-close > svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.message-content {
    text-transform: uppercase;
}
