body {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

#backgroundLogin {
    position: fixed;
    width: 100%;
    height: 100%;
}

#backgroundLogin img {
    min-width: 100vw;
    height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media(max-width: 1035px) {
    #backgroundLogin img {
        height: 100%;
        width: auto;
    }
}

.loginMainContener {
    width: 100%;
    min-height: 100%;
    height: auto;
}

.copyrightText {
    position: relative;
    overflow: hidden;
    width: 85%;
    float: right;
}

.copyrightText p {
    margin: 0;
}

.loginFormContener {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 5%;
    width: 40vw;
    max-width: 450px;
    overflow: hidden;
    padding: 20px;
    min-height: 100vh;
}

.registerFormContener {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    right: 5%;
    max-width: 450px;
    width: 40vw;
    overflow: hidden;
    padding: 20px;
    min-height: 100vh;
}

.logoContener {
    height: 100%;
    width: 200px;
    float: left;
    position: relative;
}

.logoContener img {
    width: 100px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.formContener {
    float: left;
    width: 100%;
    margin-top: 75px;
}

@media(max-width:768px) {
    .formContener {
        margin-top: 50px;
    }
}

.text {
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
}

.welcome p {
    color: #fff;
    font-size: 50px;
    letter-spacing: 5px;
    font-weight: 900;
    margin: 0;
}

.login p {
    color: #fff;
    font-size: 15px;
    letter-spacing: 5px;
    font-weight: 900;
    margin: 0;
}

.input-style {
    padding: 10px 20px;
    border: none;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    font: normal 12px/normal Verdana, Geneva, sans-serif;
    color: rgba(255, 255, 255, 1);
    -o-text-overflow: clip;
    text-overflow: clip;
    background: rgba(0, 0, 0, 0.25);
    margin: 5px 0px;
}

button[type=submit],
button[type=submit]:focus,
button[type=submit]:active {
    background-color: rgba(0, 0, 0, 0.4);
    color: rgb(158, 158, 158);
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease-out;
    border: 1px solid #26a69a;
}

button[type=submit]:hover {
    background-color: #26a69a;
    color: #fff;
    transition: all 0.3s ease-out;
}

.footer {
    width: 100%;
    float: left;
    padding: 50px 10px 0;
}

.footer p {
    color: rgb(158, 158, 158);
    font-weight: 400;
    font-size: 10px;
    float: right;
    margin-top: 35px;
}

.error p {
    margin: 0;
    color: #e15d62;
    text-align: center;
    margin-bottom: 10px !important;
}

.errorRegister p {
    margin: 0;
    color: #e15d62;
    text-align: center;
    margin-bottom: 10px !important;
}

.successRegister p {
    margin: 0;
    color: #6dad70;
    text-align: center;
    margin-bottom: 10px !important;
}
.footerLogo {
    margin-top: 28px;
    float: left
}

.reg a {
    color: #26a69a;
}

@media (max-height: 550px) {
    .loginFormContener {
        top: 0;
        /* transform: translate( -50%, 0); */
    }
}

@media (max-width: 1000px) {
    .footerLogo {
        margin: auto;
        display: block;
        float: none;
        margin-bottom: -10px;
        margin-top: 10px;
    }
    .footer p {
        width: 100%;
        margin-top: 20px;
    }
    .copyrightText {
        width: 100%;
    }
}

@media (max-width: 768px) {
   
    .loginFormContener,
    .registerFormContener {
        width: 100%;
        max-width: 100%;
        float: left;
        position: relative;
        left: 0;
        min-height: 0;
    }
}