@media (max-width: 767px) {
    .form-card {
        padding: 6px 16px 16px 16px !important;
        min-height: auto !important;
    }

    .form-input-container {
        margin: 12px auto 0 auto !important;
        width: 100% !important;
        height: 64px !important;
    }

    .form-input {
        max-width: calc(100% - 32px);
        height: 40px !important;
    }

    .form-input-label {
        font-size: 12px !important;
    }

    .divider {
        height: 30px !important;
    }

    .form-input-image {
        height: 18px !important;
        width: 18px !important;
        margin: 11px !important;
    }

    .form-bottom-text {
        font-size: 12px !important;
    }

    #logPage input[type=button], #logPage input[type=submit], #logPage input[type=reset] {
        width: 75px !important;
        height: 30px !important;
        margin: 16px auto 0 auto !important;
        font-size: 12px !important;
    }

    .form-input-text {
        font-size: 12px !important;
    }
}

.form-card {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 600px;
    margin: 32px auto;
    padding: 32px 0;

    background: #FFFFFF;
    box-shadow: 0px 8px 32px 1px rgba(0, 0, 0, 0.15);
}

.form-input-container {
    margin: 8px auto 0 auto;
    width: 440px;
    height: 80px;
}

.form-input {
    display: flex;
    position: absolute;
    width: 440px;
    height: 60px;
    background: #F5F5F5;
}

.form-input-image {
    margin: 16px;
    height: 32px;
    width: 32px;
}

.form-input-label {
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}

.divider {
    border: 0.01rem solid rgba(0, 0, 0, 0.5);
    height: 50px;
    align-self: center;
}


#logPage input[type=text], #logPage input[type=password] {
    background: #F5F5F5 !important;
    border: none !important;
    text-align: left;
    font-size: 16px;
    padding: 0 0 0 16px !important;
    margin: 0 !important;
    width: 100%;
}

#logPage input[type=text]:focus, #logPage input[type=password]:focus {
    outline: none !important;
    box-shadow: none !important;
}

#logPage input[type=button], #logPage input[type=submit], #logPage input[type=reset] {
    width: 150px;
    height: 40px;
    margin: 16px auto 0 auto;
    background-color: orange;
    box-shadow: 0 10px 30px 0 rgb(95 186 233 / 40%);
    text-align: center;
    font-size: 18px;
    color: white;
    border: none;
    border-radius: 5px 5px 5px 5px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#logPage input[type=button]:hover, #logPage input[type=submit]:hover, #logPage input[type=reset]:hover {
    background-color: darkorange;
}

#logPage input[type=button]:active, #logPage input[type=submit]:active, #logPage input[type=reset]:active {
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

.form-bottom-text {
    text-align: center;
    margin-top: 16px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;

    color: #000000;
}
