/*
    breakpoints
    small 576px
    medium 768px
    large 992px
*/

html {
    --top-nav-height: 69px;
    --side-nav-width: 206px;
    --side-nav-height: 214px;
}

body, html {
    height: 100%;
    background-color: #000000;
    color: white!important;
    padding: 0px;
    margin: 0px;
    font-family: "Blinker", sans-serif!important;
}

body{
    display:flex;
}

/* General Styles */
.header {
    font-size: 18px;
    letter-spacing: 3.6px;
    font-weight: bold;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .mobile-wrap {
        flex-wrap: wrap;
    }
}

label {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

input[type=text], input[type=email], input[type=password] {
    background-color: #141414;
    width: 100%;
    height: 62px;
    padding: 15px;
    color: white;
    font-size: 18px;
    border: 1px solid #484848;
    border-radius:7px;
}

input[type=text]::placeholder, input[type=email]::placeholder, input[type=password]::placeholder {
    color: #545454;
    font-weight:600;
}

.btn-red {
    background-color: red;
    color: white;
}

/*Login Form*/
.home-login-form-container {
    margin: 0 160px;
}

@media (max-width:992px) {
    .home-login-form-container{
        margin: 0 20px;
    }
}

.login-form {
    border-radius: 10px;
    border-width: 5px;
    border-color: #262626;
    border-style: solid;
    max-width: 915px;
    margin: 0 auto;
}

.content-header h1 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}

.validation-summary-errors{
    color:red;
}