/* ************************ LOGIN PAGE ************************* */

svg#Layer_1 {
    width: 315px;
}

.login .fullscreen-container {
	height: calc(100vh);
	min-height: calc(100vh);
}

.loginpage-container {
    position: absolute;
    z-index: 2;
    top: 0;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-rows: minmax(auto, 1fr) 2fr minmax(auto, 1fr);
    text-align: center;
}

.loginpage-tagline {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loginpage-footer {
    display: flex;
    justify-content: center;
    align-items: start;
    margin-top: 40px;
}

.loginpage-footer span a {
	font-family: "LL Brown Pro Bold Alternate Web", Arial,Helvetica,sans-serif;
	font-size: 18px;
    line-height: 20px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.slide-overlay {
    /*background-color: rgba(0, 0, 0, 0.2);*/
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.loginpage-popout {
    display: flex;
    height: auto;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.our-popout .login-form {
    background: #F1F1EF;
    width: 500px;
    height: 465px;
    padding: 65px 45px;
}

.our-popout .login-form form {
    display: grid;
    align-content: space-between;
    height: 100%;
}

.our-popout .login-form .log-title {
    font-family: "LL Brown Pro Bold Alternate Web", Arial,Helvetica,sans-serif;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px;
}

.login-form .btn-primary {
    appearance: none;
    font-size: 18px;
    font-weight: 400;
    background-color: #000;
    font-family: "LL Brown Pro Bold Alternate Web",Arial,Helvetica,sans-serif;
    color: #fff;
    text-align: center;
    padding: 8px 12px;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: .02em;
    text-decoration: none;
    border: 0;
    margin-top: 20px;
    transition: .5s;
}

.login-form .mb-3 input {
    margin-bottom: 12px;
    width: 100%;
    padding: 10px;
    color: #303030;
    outline: none;
    font-size: 15px;
    border-radius: 0;
    border: 1px solid #303030;
}

.Signup_block {
    margin-top: 30px;
}

.signup--btn.logs {
    float: left;
}

.signup--btn {
    float: right;
}

.signup--btn a {
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #000;
    font-family: "LL Brown Pro Bold Web", Arial,Helvetica,sans-serif;
    font-size: 16px;
    padding-bottom: 3px;
}

.text-danger {
    font-size: 16px;
    text-align: left !important;
    float: left;
    padding-left: 0px;
    color: #8a1f11 !important;
    background: 0 0 !important;
    margin-bottom: 10px;
}

/* ************************ LOGIN PAGE RESPONSIVE ************************* */
@media (max-width: 400px) {
    svg#Layer_1 {
        width: 265px;
    }
}

@media only screen and (max-width: 600px) {
    .loginpage-footer span a {
    	font-size: 15px;
        line-height: 18px;
    }
    
    .our-popout .login-form .log-title {
        font-size: 18px;
        line-height: 25px;
    }
    
    .signup--btn a {
        font-size: 14px;
        padding-bottom: 2px;
    }
    
    .login-form .btn-primary {
        font-size: 15px;
    }
    
    .login-form .mb-3 input {
        padding: 8px;
    }

    .our-popout .login-form {
        width: 100%;
        height: auto;
        padding: 20px;
    }
}