.ig-topbar-anonymous {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background-color: rgba(244, 244, 244, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    font-size: 12px;
    font-family: var(--ig-font-bold);
    z-index: 1000;
}

.ig-background-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.ig-background-image {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.ig-background-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ig-layout-authenticated .ig-background-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.ig-content-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding-top: 30px;
    padding-bottom: 35px;
}

.ig-footer {
    background-color: #FFDD00;
    width: 100%;
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 12px;
    padding: 5px 15px;
    font-family: var(--ig-font-primary);
    z-index: 1001;
}

.ig-footer-copyright,
.ig-footer-projectinfo {
    flex: 1;
    min-width: 50%;
}

.ig-footer-copyright p {
    margin: 0;
}

.ig-footer-projectinfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ig-footer-info {
    flex: 1;
    text-align: right;
}

.ig-footer-info p {
    margin: 0;
    padding: 2px 8px 0 0;
    line-height: 1.3;
}

.ig-footer-info p:first-of-type {
    padding-bottom: 0;
}

.ig-footer-button {
    padding: 5px;
}

.ig-footer-cta {
    background-color: #FFDD00;
    color: #000;
    text-decoration: none;
    padding: 5px 8px;
    display: block;
    text-align: center;
    min-width: 120px;
    font-family: var(--ig-font-primary);
    font-size: 12px;
}

.ig-footer-cta:hover {
    background-color: #000;
    color: #fff;
}

@media (max-width: 750px) {
    .ig-footer-projectinfo,
    .ig-footer {
        display: block;
    }
    
    .ig-footer-info p:first-of-type {
        padding-bottom: 5px;
    }
}

@media (max-width: 768px) {
    .ig-footer {
        display: none !important;
    }
    
    .ig-content-wrapper {
        padding: 0;
        padding-bottom: 0;
    }
    
    .ig-container {
        max-width: 100%;
        width: 100%;
        padding: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .ig-card {
        flex: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        box-shadow: none;
        border-radius: 0;
        padding: 30px 20px;
    }
    
    .ig-card .ig-login-form {
        flex: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .ig-card .ig-forgot-password {
        margin-top: auto;
        padding-top: 20px;
    }
    
    .ig-background-wrapper {
        display: none;
    }
}
