html, body {
    height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-image: url("/images/login-bg2.jpg");
    background-color: #1d2634;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #9e9ea4;
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    height: 100%;
}

main {
    flex: 1;
    min-height: 100vh;
}

.input-field.col label {
    left: 1.5rem !important;
}

.input-field > label:not(.label-icon).active {
    transform: translateY(-20px) scale(0.8) !important;
}

.login-block {
    margin-top: 200px;
}

.input-block {
    height: 550px !important;
    background-color: white;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    z-index: -1;
}

.login-picture {
    min-height: 550px !important;
    background-image: linear-gradient(to top, rgba(41, 185, 163, 0.81), rgba(41, 185, 163, 0.5));
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    z-index: 9999 !important;
}

.login-logo {
    width: 100%;
}

.sign-in-text {
    margin: 20px 30px 10px 30px;
    color: rgba(41, 185, 163, 0.5);
}

.form {
/*    margin-left: 165px !important;*/
}

.centered-row {
   margin-left: 40px !important;
}

.header-text {
    font-size: 55px;
    font-weight: bold;
}


@media screen and (max-width: 600px) {
    body {
        background-image: none;
        background-color: #004445;
    }

    .username-container {
        width: 100% !important;
        max-width: none !important;
    }

    .password-container {
        width: 100% !important;
        max-width: none !important;
    }

    #submit {
        width: 100%;
    }

    .login-block {
        margin-top: 100px;
    }

    .input-block {
        background-color: transparent;
        border-radius: 50px;
        border: none;
        box-shadow: none !important;
    }

    .sign-in-text {
        color: rgb(41, 185, 163);
    }



    .header-text {
        font-size: 30px;
    }
}

#submit:hover {
    box-shadow: 0 5px 8px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);

}

#username {
    border: 1px solid #00000047;
    border-radius: 8px;
    width: 300px;
    width: 100%;
    padding-right: 40px; /* Leave space for the clear button */
    padding: 10px;
    box-sizing: border-box;
}

#password {
    border: 1px solid #00000047;
    border-radius: 8px;
    width: 300px;
    width: 100%;
    padding-right: 40px; /* Leave space for the clear button */
    padding: 10px;
    box-sizing: border-box;
}

.username-container {
    width: 100%;
    max-width: 300px;
}

.password-container {
    width: 100%;
    max-width: 300px;
}

#show-password {
    position: absolute;
    top: 75%;
    right: 10px;
    transform: translateY(-50%);
    color: #c5c5c5;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    z-index: 1;
}

#show-password:hover {
    color: rgba(41, 185, 163, 0.5);
}

.forgot-password {
    font-size: 13px;
    text-decoration: underline;
    position: relative;
    right: -40px;
    cursor: pointer;
}


@media screen and (max-width: 600px) {

}