.message {
    position: absolute;
    top: 75px;
    left: 15px;
    color: red;
    font-size: 1.25rem
}

.loginBg {
    position: absolute;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    background-image: url(/images/try_bg3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 78%;
    opacity: .2;
    z-index: -1;
    top: 0;
    /*background-attachment: fixed;*/
}

.loginCont {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.cont {
    background-color: white;
    padding: 25px 7px;
    border-radius: 10px;
    border: 1px solid #d4d4d4;
    box-shadow: 0px 4px 14px rgba(0,0,0,0.07);
}

.enter_with {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.loginCont .searchButton .button {
    background-color: white;
    color: #881944;
    border-color: #881944;
}

.loginCont .searchButton .button:hover {
    background-color: #881944;
    color: white;
}

.login__overflow {
    position: relative;
    padding: 30px;
    border: 1px solid #cdcdcd;
    border-radius: 5px;
    box-shadow: 0px 3px 7px rgba(77, 77, 77, 0.17);
    background-color: rgba(255, 255, 255, 0.85);
}

.login__field {
    min-width: 265px;
}

.login__field label {
    color: #551527;
}

.login__footer {
    position: absolute;
    bottom: -35px;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    padding: 5px 25px;
    font-size: .85rem;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-shadow: 0px 2px 1px rgba(255, 255, 255, 0.17);
    transition: .35s;
}

.login__footer a:hover {
    color: #444;
}

.buttonCont {
    margin-top: 35px;
    text-align: center;
}

p a {
   color: red;
}



@media all and (max-width: 800px) {
    .overflow__loginRegister {
        top: 60px;
    }
    .overflow__loginRegister .logoAside {
        max-width: 200px !Important;
        position: static;
        display: block;
        text-align: center;
    }

    .loginCont {
        height: auto;
        margin-top: 25px;
    }
}

