.field-icon {
    float: right;
    margin-left: -25px;
    margin-top: -25px;
    margin-right: 9px;
    position: relative;
    z-index: 2;
    cursor:pointer;
}

.login-box {
    margin: 5% auto;
}

#installBtn {
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 99998;
    height: 40px;
    display: none;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
    font-family: system-ui, sans-serif;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: all 0.2s ease;
}

#installBtn:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

#installBtn:active {
    transform: scale(0.97);
}

#installBtn.show {
    display: block;
    animation: fadeSlideIn 0.3s ease;
}

@keyframes fadeSlideIn {
    from {
    opacity: 0;
    transform: translateY(10px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

#login-box {
    position:relative;
    z-index:3;
}

#logo {
    margin-bottom:10px;
}

.login-box-body {
    border-radius:4px;
}

.login-box-msg {
    font-size:18px;
    font-weight:bold;
    padding-bottom:15px;
}

.val_err {
    margin-top:-12px;
}

.val_err_cont {
    color:red;
    text-align:center;
}

.erred {
    padding-bottom:10px;
    margin-top:-12px;
    font-size:13px;
}

.erred_cont {
    color:red;
    text-align:center;
}

.cont_style {
    border-radius:4px;
}

#pwd_mask {
    display:none;
    border-radius: 4px;
    top: -34px;
    position: relative;
}

.submitStyle {
    border-radius:4px;
    background-color: darkslategray; /*overwrite*/
    color: white;
}

.submitStyle:hover, .submitStyle:active, .submitStyle:focus {
    color: white;
}