html,
body {
    height: 100%;
    width: 100%;
}

body {
    /* background: #000; */
    background-image: url('../images/auth-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.login-form{
    background: #000;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 0 30px 6px rgba(255, 255, 255, .75) !important;
}

.login-form h3 {
    color: white;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-size: 2.5rem;
}

.login-form h6 {
    color: #CCC;
    font-weight: 300;
}

.login-form label {
    margin-bottom: 0px;
    font-weight: 400;
    font-size: 90%;
    letter-spacing: 0.8px;
    color: #CCC;
}

.login-form .form-control {
    color: white !important;
    background: #222 !important;
    border: 1px solid #444;
    border-radius: 5px !important;
    height: calc(3em + 0.75rem + 1px) !important;
    padding: 0.375rem 1rem;
    font-size: 14px !important;
    outline: none;
}

.login-form .form-control:active,
.login-form .form-control:focus,
.login-form .form-control:hover {
    background: #333 !important;
    border: 1px solid #555 !important;
}

.login-form .form-control::placeholder{
    color: #777;
}

.form-links a{
    color: #999;
}

.form-links a:hover{
    color: #000;
}


/* Change the white to any color */
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: white !important;
    -webkit-box-shadow: 0 0 0 30px #222 inset !important;
}


.btn-main {
    background-color: #FFF;
    color: #333;
    border: 1px solid #FFF;
    text-transform: uppercase;
}

.btn-main:hover {
    background-color: #FFF;
    color: #333;
    border: 1px solid #FFF;
    box-shadow: 0 0 30px 6px rgba(255, 255, 255, .75) !important;
}


.btn-main:disabled {
    background-color: #AAA;
    pointer-events: none;
}