/* Divider */
.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

/* Custom height class */
.h-custom {
    height: calc(100% - 73px);
}

/* Responsive height adjustment */
@media (max-width: 450px) {
    .h-custom {
        height: 100%;
    }
}

/* General layout adjustments */
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Logo image adjustments for mobile devices */
@media (max-width: 576px) {
    .col-md-9.col-lg-6.col-xl-3 img {
        width: 10%;
        max-width: 120px;
        height: auto;
        margin: 0 auto;
        display: block;
    }

}

/* Responsive form layout */
@media (max-width: 768px) {
    .col-md-8.col-lg-6.col-xl-4 {
        width: 100%;
    }

    .form-outline input {
        font-size: 1rem;
    }

    /* Button adjustments for smaller screens */
    .btn-lg {
        width: 100%;
        padding: 1rem;
    }
}

/* Footer alignment for small screens */
@media (max-width: 576px) {
    .bg-primary {
        flex-direction: column;
        text-align: center;
    }

    .bg-primary div.text-white {
        margin-bottom: 1rem;
    }

    .bg-primary a {
        margin-bottom: 0.5rem;
    }
}

/* Footer link spacing */
.bg-primary a i {
    font-size: 1.25rem;
}

/* Additional styling */
.form-outline input {
    padding: 0.75rem 1rem;
}

.text-body {
    color: #6c757d;
}

.link-danger {
    color: #dc3545;
}

.search-container {
    max-width: 600px;
    margin: auto;
    margin-top: 50px;
    padding: 20px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}