.login-section {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    background-color: var(--quote-color);
    color: var(--white-color);
    padding: 60px 0px 60px 60px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.object-fit-cover {
    object-fit: cover;
}

.login-section a.forgotten-password {
    font-size: 0.9rem;
}

.login-section a.forgotten-password:hover {
    font-size: 0.9rem;
    color: var(--dark-color);
}

/* Form Validation (Auth) */
.success-green {
    color: var(--success-color);
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
}

.error-orange {
    color: var(--error-orange);
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .login-section {
        padding: 20px;
        height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .login-section .row {
        height: auto;
        flex-direction: column;
    }

    .login-section .col-md-7 {
        order: 2;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .login-section .col-md-5 {
        order: 1;
        height: 40vh;
    }

    .login-section img {
        height: 100%;
        object-fit: cover;
    }

    .login-section h1 {
        font-size: 1.5rem;
    }

    .login-section p {
        font-size: 1rem;
    }

    .login-section form {
        width: 100%;
    }

    .login-section .btn {
        font-size: 1rem;
        padding: 10px;
    }

    .login-section .form-check-label {
        font-size: 0.9rem;
    }
}
