body {
    background: #383838;
    font-family: 'Roboto', sans-serif;
}

.logo {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 70px;
}

.logo img {
    width: 300px;
}

.login-box {
    margin-top: 130px;
    height: auto;
    background: #2b2b2b;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

input[type=text] {
    background-color: #3e3e3e;
    border: none;
    border-radius: 0px;
    outline: 0;
    color: #ECF0F5;
    height: 50px;
}

input[type=password] {
    background-color: #3e3e3e;
    border: none;
    border-radius: 0px;
    outline: 0;
    color: #ECF0F5;
    height: 50px;
}

input[type=email] {
    background-color: #3e3e3e;
    border: none;
    border-radius: 0px;
    outline: 0;
    color: #ECF0F5;
    height: 50px;
}

.form-group {
    outline: 0px;
    margin-bottom: 5px;
}

.form-control:focus {
    background-color: #3e3e3e;
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
    color: #ECF0F5;
}

input:focus {
    outline: none;
    box-shadow: 0 0 0;
}

.btn-outline-primary {
    color: #fff;
    background-color: #4a57ff;
    border-color: #4a57ff;
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 0px;
    font-weight: bold;
}

.btn-outline-primary:hover {
    background-color: #4a57ff;
    border-color: #4a57ff;
}

.login-text {
    text-align: left;
    padding-left: 0px;
    color: #ff0000;
    visibility: hidden;
}

.success {
    text-align: left;
    padding-left: 0px;
    color: #007bff;
    position: relative;
    top: -20px;
    visibility: hidden;
}

.input-group-text {
    background-color: #3e3e3e;
    border: none;
    padding: .375rem 0.90rem;
    border-radius: 0px;
    width: 42px;
}

.forgot-pass {
    margin-bottom: 20px;
    float: right;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1270px;
    }
}

@media only screen and (max-width: 480px) {
    .login-box {
        margin-top: 80px;
    }
}