@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

/* Reset and Global Containers */
body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    overflow-x: hidden;
}

* {
    font-family: 'Roboto', sans-serif;
}

.error-block {
    color: rgb(255, 246, 246);
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
}

.login-page-container {
    padding: 40px 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.logo-wrapper {
    align-self: flex-start;
    margin-bottom: 10px;
}

.test-system-text {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.form-map-row {
    /* Flexbox */
    /* display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin-bottom: 20px; */

    /* Static */
    width: 100%;
    max-width: 1200px;
    align-self: flex-start;
    margin-top: 100px;
}

.login-form {
    flex-shrink: 0;
    width: 40%;
    min-width: 350px;
    background-color: #0a8fcf;
    padding: 20px;
    border-radius: 30px;
}

.screen-map-image {
    /* Flexbox */
    /* flex-grow: 1;
    width: auto;
    max-width: 60%;
    max-height: 500px; */

    /* Static */
    position: fixed;
    top: 30px;
    right: 10px;
    min-width: 400px;
    max-width: 650px;
    height: auto;
    z-index: -1;
    object-fit: contain;
}


.admin-image {
    /* Flexbox */
    /* position: static; */
    display: block;
    /* max-width: 800px; */
    /* margin: 20px auto 40px auto; */
    object-fit: contain;

    /* Static */
    position: fixed;
    width: 60%;
    min-width: 300px;
    bottom: 0px;
    left: 0px;
    z-index: -1;
    height: auto;
    max-height: 280px;
}

.input-field {
    display: block;
    padding: 12px;
    border-radius: 20px;
    border: none;
    margin-top: 7px;
}

.login-form > .form-group {
    margin-bottom: 10px;
}

.input-label {
    color: white;
}

.button-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 17px;
}

.button-wrapper > .submit-button {
    background-color: transparent;
    padding-inline: 36px;
    padding-block: 6px;
    border-radius: 20px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.button-wrapper > .submit-button:hover {
    background-color: #144880;
}

@media (max-width: 1100px) {

    /* Constrain and center the login form */
    .login-form {
        width: 100%;
        max-width: 400px;
        margin: 0 auto; /* Ensures centering */
    }

    /* Flexbox */
    /* .login-form, .screen-map-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    } */
    /* Static */
     .login-form, .screen-map-image, .admin-image {
        position: static !important;
        display: block !important;
        width: 100%;
        max-width: 400px;
        margin: 20px auto;
    }

    body {
        overflow-y: auto !important;
    }
}