/* Styles for login page */
body {
    font-size: 16px;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.container {
    padding-left: 1rem;
    padding-right: 1rem;
}

.container-fluid {
    background: linear-gradient(to bottom, #e3f2fd, #ffffff);
}

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

.navbar {
    transition: all 0.3s ease;
}

/* Styles for navbar */

.navbar .nav-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.navbar .btn {
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.navbar .btn:hover {
    transform: scale(1.05);
}
  
.navbar-brand span {
    font-size: 1rem;
}

.collapse {
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
}

.collapse.show {
    max-height: 500px;
}
  
/* responsive login adjustments */
@media (max-width: 834px) {
    .row.shadow-lg.rounded-3 {
        flex-direction: column !important;
        width: 80% !important;
        height: auto !important;
    }

    .row.shadow-lg.rounded-3 .col-md-6 {
        width: 100%;
        max-width: 100%;
        margin-top: 1.5rem;
    }

    .row.shadow-lg.rounded-3 .col-md-6.p-0 {
        padding-bottom: 1.5rem;
    }

    .row.shadow-lg.rounded-3 .col-md-6 img {
        max-height: 250px;
        object-fit: cover;
        width: 100%;
    }
}

@media screen and (min-device-width: 834px) and (max-device-width: 1440px) { 
    .row.shadow-lg.rounded-3 {
        width: 80% !important;
      }
}

/* responsive navbar adjustments */
@media (max-width: 991px) {
    .d-lg-block {
        display: block !important;
    }
}

@media (max-width: 511px) {
    .d-lg-block {
        display: none !important;
    }
}

@media (max-width: 370px) {
    .navbar-brand span {
        display: none !important;
    }
}