@import url(style.css);

.content {
    color: #000000 !important;
}

.loginContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    width: 80vw;
    margin: 50px;
    min-height: 387px;
}

.loginLandingImage {
    width: 25%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: -1px 1px 5px 3px rgba(0,0,0,0.1);
}

    .loginLandingImage::before {
        content: ''; /* Make sure the pseudo-element displays */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://glock.stylelabs.cloud/api/public/content/c3a327eeed854505b348dcd9827d988a?v=e15abf2f');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: local;
        filter: brightness(75%);
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }

.loginInformation {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    display: flex;
    flex-direction: column;
    background-color: #f2f2f2;
    width: 50%;
    padding: 30px;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-shadow: -1px 1px 5px 3px rgba(0,0,0,0.1);
}

/* Header styles */
.loginContainer h1 {
    color: #000000 !important;
    margin-bottom: 2vh !important;
    padding-top: 0px;
}
.loginContainer h2{
    color: #000000;
}

.loginContainer h3 {
    font-size: 1.5rem;
    color: #000000 !important;
    margin-bottom: 0.5rem !important;
    text-align: center;
}

.searchButton {
    display: block;
    margin: 20px auto;
    padding: 15px 30px;
    background-color: black;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    width: auto;
}

.inputBox {
    display: block;
    margin: 10px 20px;
    border: none;
    border-radius: 5px;
    height: 4vh;
    width: 150px;
    font-size: 1.5rem;
}

.loginText {
    font-size: 1.5rem;
}

.loginTable {
}


@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* Make the container more responsive */
@media (max-width: 1000px) {
    .loginTable {
        width: 80vw;
    }

    .loginContainer {
        flex-direction: column;
        margin: 20px;
        height: 80vh;
    }

    .loginText {
        font-size: 1.2rem;
        max-width: 50vw;
    }

    .loginLandingImage, .loginInformation {
        width: 85vw;
    }

    .loginInformation {
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        border-top-right-radius: 0;
    }

    .loginLandingImage {
        height: 50%;
    }

        .loginLandingImage::before {
            height: 100%;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
            border-bottom-left-radius: 0;
        }
}
