body {
    --primary-color: #366682;
    --secondary-color: #366682;
    --text-color: #546E7A;
}

body {
    background-color: black;
}

.blur-background {
    background: url("background-del.jpg") center no-repeat;
    position: fixed;
    width: 150vw;
    height: 150vh;
    filter: blur(6px);
    opacity: 0.8;
    top: -25vh;
    left: -25vw;
    background-position: center;
    background-size: 75%;
}

.blur-background::after {
    width: 150vw;
    height: 150vh;
    display: block;
    position: absolute;
    z-index: 9;
    content: '';
    background-color: rgba(54, 101, 127, 0.7);
}

.login {
    top: calc((100vh - 213px) / 2);
}

.login-content {
    max-width: 375px;
    margin: auto;
    background-color: #fff;
    border-radius: 16px;
    top: calc((100vh - 213px) / 2);
    padding: .6rem 2rem;
}

.login-content .logo {
    background: url("./logo_megaprint_white.png") no-repeat center;
    height: 70px;
    margin: auto;
    display: block;
    background-size: contain;
    position: absolute;
    top: -108px;
    width: 100%;
    left: 0;
    z-index: 0;
}

.logo-second {
    width: 300px;
    right: .5rem;
    z-index: 0;
    position: absolute;
    bottom: .5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: .8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    text-transform: uppercase;
}

.logo-second .logo {
    background: url("./logo_w.png") no-repeat center;
    height: 80px;
    display: none;
    background-size: contain;
    width: 100%;
    /*margin-right: 1rem;
    border-right: 1px solid #fff;*/
}

.logo-second .text {
    color: #c7ffca;
    text-transform: uppercase;
    font-weight: bold;
}

.login-content .login-image {
    background: url("./fingerPrintIcon.png") no-repeat center;
    width: 140px;
    height: 140px;
    margin: auto;
    display: block;
}

.login-content h4 {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .3rem;
    margin-bottom: 30px;
    margin-top: 25px;
    font-weight: bold;
}

.login-content h5 {
    text-align: center;
    font-weight: bold;
    letter-spacing: .2rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
}

.login-content input {
    border-top: none;
    border-right: none;
    border-left: none;
}

.login-content .row-button {
    height: 0;
}

.login-content button {
    border: none;
    width: 50px;
    height: 50px;
    padding: 15px;
    border-radius: 100px;
    font-weight: bold;
    bottom: 2px;
    position: relative;
    background: url("arrowRightIcon.png") center no-repeat;
}

.login-content button:disabled {
    background: #cfd8dc url("arrowRightIcon.png") center no-repeat;
}

.login-content button:not(:disabled) {
    background-color: var(--secondary-color);
    color: #fff;
}

.alert {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 999;
    border-radius: 10px;
    padding: 25px 35px;
    border: none !important;
    opacity: 1;
    max-width: 300px;

    -webkit-transition: opacity 500ms ease-in-out;
    -moz-transition: opacity 500ms ease-in-out;
    -ms-transition: opacity 500ms ease-in-out;
    -o-transition: opacity 500ms ease-in-out;
    transition: opacity 500ms ease-in-out;
}
.hide-alert {
    opacity: 0;

    -webkit-transition: opacity 500ms ease-in-out;
    -moz-transition: opacity 500ms ease-in-out;
    -ms-transition: opacity 500ms ease-in-out;
    -o-transition: opacity 500ms ease-in-out;
    transition: opacity 500ms ease-in-out;
}
