body {
    background: url('/images/fundo.jpg');
}

input[type="text"], input[type="email"], input[type="password"] {
    font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
}

input:focus {
    outline: 0;
    border: 1px solid #aaa;
}

.form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
}

button[type="submit"] {
    cursor: pointer;
    width: 100%;
    border: none;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
}

button[type="submit"]:hover {
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

button:active {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

a {
    color: #0baaef;
}

a:hover {
    color: #64C6F0;
}

img {
    margin: 0 auto;
}

.login_form {
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 15px;
    font-size: 16px;
    text-align: center;
}

.login_h {
    color: #fff;
    margin-bottom: 25px;
}

.alert-above {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 360px;
    padding: 20px;
    color: white;
    margin-bottom: 15px;
    display: none;
    position: fixed;
    z-index: 1100;
    left: 10%;
    right: 10%;
    bottom: 0;
    border-radius: 3px;
    text-align: center;
}

.warning {
    background-color: #ff9800;
}

#alertLogin {
    display: block;
}

.login_form {
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 16px;
}

@media (min-width: 768px) {
    .login_form {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .login_form {
        height: 100%;
        min-height: 100vh;
    }
}

.form-group {
    margin-bottom: 25px;
}