#loading img {
    width: 50px;
    height: 50px;
}

.error-message {
    color: red;
    font-size: 0.875rem;
    display: none;
}

.success-message {
    color: green;
    font-size: 0.875rem;
    display: none;
}

#loading {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.login-container {
    height: 100%;
    width: 100%;
    padding: 1.5rem;
    max-width: 500px;
    margin: auto;
    display: flex;
}

.login-container a {
    font-size: 0.85rem;
}

@media (max-width: 577px) {
    .login-container {
        padding: 0px !important;
    }

    .main {
        background-color: #f7f7f7 !important;
    }

    .login-container .card {
        border: 0px !important;
        border-radius: 0px !important;
    }

    .login-container {
        padding: 0px !important;
    }
}

.toastContainer {
    z-index: 11;
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 0px !important;
    z-index: 100000;
}

.upload-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    /* Smaller size */
    color: var(--primaryColor);
    opacity: 0.3;
}