.hero.is-fullheight {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/hvc_hypercolors.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* Preventing Scrolling */
body, html {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

/* Fade-in effect */
.fade-in {
    animation: fadeIn ease 1s;
}

@keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

.login-card, .profile-card {
    max-width: 90%;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: auto; /* This ensures the same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.login-divider {
    margin: 20px 0;
    position: relative;
    text-align: center;
}

.login-divider span {
    background-color: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.login-divider:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px solid #ddd;
}

.google-login-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.google-login-btn img {
    width: 70px;
    cursor: pointer;
}

.login-card, .profile-card {
    max-width: 400px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 320px; /* This ensures the same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* Additional styles for the profile card divider */
.profile-divider {
    height: 1px;
    background-color: #ddd;
    margin: 20px 0;
}

.navbar {
    height: 100px; /* Adjust this value to your preference */
}

.navbar-item img {
    height: 80%; /* Adjust this value to your preference */
    margin-top: 10px; /* Center the logo vertically */
}

.split-view {
    position: relative;
    width: 100%;
    height: 100%; /* Adjust as needed */
    overflow: hidden;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.resizable {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-size: cover;
    width: 50%; /* Initial width; adjust as needed */
}

.resize-handle {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 5px; /* Width of the slider handle */
    background: #FFF; /* Color of the slider handle */
    cursor: ew-resize;
}

.active-nav-item {
    font-weight: bold;
    /* Add other styles for highlighting */
}

.is-success {
    color: #155724; /* dark green text */
    background-color: #009032; /* light green background */
    border-color: #c3e6cb;
    /* other styling as needed */
}

.is-danger {
    color: #721c24; /* dark red text */
    background-color: #f8d7da; /* light red background */
    border-color: #f5c6cb;
    /* other styling as needed */
}

