input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

/* ---- LOGIN ---- */
body {
    height: 100vh;
    margin: 0;
    user-select: none;
}

#popup {
    background-color: white;
    box-shadow: 1px 1px 5px 0px #d7d7d7;
    border-radius: 7px;
    padding: 79px;
    display: flex;
    flex-direction: column;
    min-width: 409px;
    color: grey;
}

input {
    outline: none;
    border: none;
    height: 100%;
    width: 100%;
    padding: 5px;
}

    ::-webkit-input-placeholder {
        color: #7a91d5;
        font-size: 12px;
    }

button {
    border: none;
    outline: none;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    color: white;
    background-color: #314685;
    cursor: pointer;
}

    button:hover {
        background-color: #14328f;
    }

img {
    width: auto;
    height: 37px;
}

.title {
    font-size: 15px;
}

    .title:active {
        color: #7a91d5;
    }

.icon {
    color: #7a91d5;
    font-size: 16px;
    cursor: pointer;
}

    .iconHide {
        display: none;
    }

    .iconShow {
        display: block;
    }

.userBox {
    border-bottom: 1px solid #bfc0d5; 
    margin-bottom: 16px; 
}

.passwordBox {
    border-bottom: 1px solid #bfc0d5; 
    margin-top: 16px;
}

.bodyContent {
    margin-top: 59px;
}

.footerContent {
    margin-top: 20px;
}

.iconsBox {
    width: 30px; 
    justify-content: center; 
    align-items: center;
}

.dsp-flex {
    display: flex;
}

.m-auto {
    margin: auto;
}

.m-left-auto {
    margin-left: auto;
}

#error {
    color: #f31f10;
    font-size: 12px;
    margin-top: 4px;
    padding-left: 5px;
    padding-top: 5px;
    visibility: hidden;
}

#empty {
    color: #f31f10;
    font-size: 12px;
    margin-top: 4px;
    padding: 5px;
    visibility: hidden;
}

@media screen and (max-width: 720px) {
    #popup {
        box-shadow: none;
        width: 100%;
        min-width: 0;
        padding: 20px;
    }

    img {
        width: auto;
        height: 50px;
    }

    .userBox {
        width: 100%
    }

    .icon {
        font-size: 24px;
    }
    
    input {
        width: 100%;
        font-size: 18px;
        padding: 10px 5px;
    }

    input::placeholder {
        font-size: 18px;
    }

    button[type="submit"] {
        font-size: 18px;
        padding: 13px 10px
    }

    #error {
        font-size: 14px
    }
}

