:root {
    --ist-blackground: #353c42;
    --ist-box-background: #272c30;
    --ist-box-footer-background: #2e3338;
}


.ist-login-body {
    background-color: var(--ist-blackground);
    padding-top: 50px;
    background-position: center center;
    background-repeat: repeat;
}

.box-login {
    width: 600px;
    margin: 4% auto;
}

.login-logo {
    font-size: 35px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 300;
}

.login-box {
    width: 600px;
    margin: 2% auto;
}
@media (max-width:768px) {
    .login-box {
        width: 90%;
        margin-top: 15px;
    }    
}

.ist-centered {
    text-align: center;
}

label {
    font-size: 14px;
    font-weight: 300;
    padding: 10px 0;
}

h3 {
    font-weight: 700;
}

.form-control {
    border: 1px solid #353c42;
    background-color: var(--ist-box-background) !important;
    color: white;
    transition: none;
}

.box-panel {
    margin-bottom: 20px;
    background-color: var(--ist-box-background);
    color: white;
    border: none;
}

.box-footer {
    padding: 10px 15px;
    background-color: var(--ist-box-footer-background);
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}


.ist-footer {
    text-align: center;
    color: #b3b3b3;
}

a, a:hover {
    color: #b3b3b3;
}

hr {
    border-top: 1px solid var(--ist-box-footer-background);
}
input[type=password] {
    background-color: var(--ist-box-background) !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px var(--ist-box-background) inset !important;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #ffffff;
    box-shadow: inset 0 0 20px 20px #353c42;
}