* {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: poppins;
}

.global {
    display: flex;
}

.image {
    width: 50%;
    height: 100vh;
    background: #00A3FF;
}

.centered-images {
    text-align: center;
}


.text-danger {
    color: #ff0000;
}

.form {
    width: 50%;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.login {
    width: 100%;
}

#logo {
    position: relative;
    top: 40px;
    left: 40px;
}

#clouds {
    position: fixed;
    top: 20%;
    left: 5%;
}

#worker {
    position: fixed;
    bottom: 0;
    left: 0;
}

#truck {
    position: fixed;
    bottom: 10px;
    right: 30px;
}

#worker_center {
    position: fixed;
    bottom: 10px;
    left: 44%;
}

.links {
    position: absolute;
    bottom: 30px;
    left: 75%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.links a {
    margin: 0 10px;
    text-decoration: none;
    color: black;
    font-size: 20px;
}

#building {
    position: fixed;
    bottom: 0;
    left: 10%;
}

.login h2 {
    font-size: 35px;
    width: 100%;
    margin: 0 0 10px 0;
}

.login h3 {
    width: 100%;
    margin: 0 0 12px 0;
    color: grey;
}

.login h3 a {
    text-decoration: none;
    color: #00A3FF;
}

.login form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 40%;
    margin: 0 auto;
}

#email,
#password {
    padding: 18px 7px;
    width: 90%;
}

#submit {
    background-color: #00A3FF;
    padding: 18px 30px;
    border-radius: 3px;
    border: none;
    color: white;
    cursor: pointer;
    margin-top: 10px;
    font-size: 16px;
}

form input:focus {
    border: 2px solid #00A3FF;
}

form input {
    border: 2px solid #A3B7E4;
    border-radius: 3px;
    margin-top: 3px;
}

.password-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.password-container a {
    text-decoration: none;
    color: #00A3FF;
    font-size: 16px;
    margin-right: 5px;
}

@media (max-width: 1500px) {

    #worker_center,
    #truck {
        display: none;
    }

    #building {
        left: 3%;
    }
}

@media (max-width: 1000px) {
    * {
        overflow-y: auto;
    }

    .global {
        flex-direction: column;
        height: auto;
    }

    .login h2 {
        font-size: 32px;
    }

    .login h2 {
        font-size: 22px;
    }

    .image {
        overflow: hidden;
        width: 100%;
        height: 70vh;
    }

    .form {
        width: 100%;
        height: auto;
        padding-top: 20px;
    }

    #building {
        position: relative;
        bottom: 0;
    }

    #worker {
        display: none;
    }

    .links {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        bottom: 0;
        width: 100%;
        margin: 20px 0 20% -50%;
    }

    .links a {
        margin: 0 10px;
    }

    .login form {
        width: 80%;
    }

    #worker_center {
        display: block;
        position: absolute;
        bottom: -70%;
        left: -10%;
        scale: 0.5;
        margin: auto 0;
    }

    #truck {
        display: block;
        position: absolute;
        bottom: -69%;
        right: -10%;
        scale: 0.5;
        margin: auto 0;
    }
}