.account .input {
    border: 1px solid #979797;
    border-radius: 5px;
    width: 100%;
    line-height: 36px;
    height: 36px;
    padding: 0 10px;
    margin: 0 0 12px;
}

.account label {
    display: block;
    font-size: 14px;
    font-weight: bold;
}

label.error {
    color: #ff0000 !important;
    font-weight: 600!important;
}

.loader {
    border: 6px solid #c9c1c1; /* Light grey */
    border-top: 6px solid #2461ac; /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loader {
    display: inline-block;
    width: 40px;
    margin-left: 1%;
}

.container-action {
    display: flex;
    flex-direction: row;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slideOutToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

#loginRegisterModal.modal.fade .modal-dialog {
    animation: 0.3s ease-out forwards slideInFromLeft;
}

#loginRegisterModal.modal.fade:not(.show) .modal-dialog {
    animation: 0.3s ease-out forwards slideOutToLeft;
}

.modal-backdrop {
    background-color: rgba(100, 149, 237, 0.5)
}

#loginRegisterTab .nav-item{
    list-style-type: none;
}

#loginForm .btn.btn-primary {
    background-color: #2461ac;
    color: #FFFFFF;
    border: none;
}

.nav-tabs .nav-link.active {
    background-color: #2461ac !important;
    color: #fff !important;
    font-weight: 600;
    border-bottom: 1px solid #2461ac !important;
}

.nav-tabs .nav-link {
    font-weight: 600;
    color: #2461ac !important;
}

.nav-tabs{
    border-bottom: 2px solid #2461ac !important;
}