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

body {
    background: #000;
}

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

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

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

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

.login-form input:active,
.login-form input:focus,
.login-form input:hover {
    background: #222 !important;
    border: 1px solid #444 !important;
}

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


/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-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:disabled {
    background-color: #AAA;
    pointer-events: none;
}