input:focus,
textarea:focus,
select:focus,
button:focus {
    border-color: #45aa4a !important;
    outline: none !important;
    box-shadow: none !important;
}

.login-page,
.register-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-box,
.register-box {
    width: 360px;
}

@media (max-width: 576px) {

    .login-box,
    .register-box {
        width: 90%;
        margin-top: 0.5rem;
    }
}

.login-logo,
.register-logo {
    margin-bottom: 0.9rem;
    font-size: 2.1rem;
    font-weight: 300;
    text-align: center;
}

.login-logo a,
.register-logo a {
    color: var(--bs-secondary-color);
    text-decoration: none;
}

.login-card-body,
.register-card-body {
    padding: 20px;
    color: var(--bs-secondary-color);
    background-color: var(--bs-body-bg);
    border-top: 0;
}

.login-box-msg,
.register-box-msg {
    padding: 0 20px 20px;
    margin: 0;
    text-align: center;
    color: #fff;
}

input,
.input-group-text {
    background: transparent !important;
}

/* Button styling */
.btn {
    position: relative;
    /* Needed to position the spinner in the center */
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.custom-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #45aa4a;
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* .indicator-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    gap: 10px;
} */

.btn .indicator-spinner {
    display: none !important;
}

.d-none {
    display: none !important;
}

.custom-spinner {
    width: 18px;
    height: 18px;
    border-width: 3px;
}