html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 10px;
}

/* Scroll to Top Button Styling */
#scrollToTopBtn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #3b82f6; /* Blue-500 */
    color: white;
    padding: 0.75rem;
    border-radius: 9999px; /* Fully rounded */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    z-index: 1000;
    border: none; /* Remove default button border */
}

    #scrollToTopBtn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    #scrollToTopBtn svg {
        width: 1.5rem;
        height: 1.5rem;
    }

.login-page {
    display: flex;
    min-height: 100vh;
    overflow: hidden;
}

.login-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.login-form-box {
    max-width: 400px;
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 144, 0.3);
    background: #fff;
}

    .login-form-box .form-control {
        background-color: #000;
        color: #fff;
    }

    .login-form-box .form-label {
        font-weight: bold;
    }

.login-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
}

    .login-right img {
        max-width: 90%;
        height: auto;
    }

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

    .divider::before,
    .divider::after {
        content: "";
        position: absolute;
        height: 1px;
        background: #ccc;
        top: 50%;
        width: 40%;
    }

    .divider::before {
        left: 0;
    }

    .divider::after {
        right: 0;
    }

    .divider span {
        padding: 0 10px;
        background: white;
        color: #888;
    }

@media (max-width: 768px) {
    .login-page {
        flex-direction: column;
    }

    .login-right {
        display: none;
    }
}