body {
    background: url("../images/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    margin: auto;
    position: relative;
    text-align: center;
    height: 100%;
    color: black;
}

.titulo {
    font-weight: bold;
    font-size: 18px;
    margin: 15px;
    text-align: center;
}

.titulo img {
    max-width: 100%;
}

#login {
    width: 400px;
    background: rgba(255, 255, 255, 0.8);
    margin-left: 12%;
    padding-top: 10px;
    padding-bottom: 20px;
}

#register {
    width: 600px;
    background: rgba(255, 255, 255, 0.8);
    padding-top: 10px;
    padding-bottom: 20px;
    margin: auto;
}

#register .label-group {
    width: 200px;
}

#register .form-group input {
    width: 300px;
    font-size: 25px;
}

#register .form-group input.error {
    border: 1px solid red;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}

button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
}

.alert-dismissable .close, .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
}
.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

#cap {
    width: 160px;
}

.form-group {
    margin: 10px;
}

.label-group {
    display: inline-block;
    width: 100px;
    font-size: 17px;
    text-align: right;
}

.form-group input {
    width: 200px;
    font-size: 25px;
}

.btn {

    font-size: 16px;
    background-color: #002DB2;
    color: #fff;
    border: 2px solid white;
    padding: 10px;
    border-radius: 10px;
}

h2 {
    padding: 0;
    margin: 0;
    color: blue;
    font: bold 32px Tahoma;
}

#header {
    top: 0px;
    width: 100%;
    height: 50px;
    background-color: #002DB2;
    text-align: right;
}

#header img {
    height: 50px;
    float: right;
}

footer {
    position: absolute;
    bottom: 5px;
}

footer div {
    padding: 20px;
    font-weight: bold;
    text-shadow: 0px 0px 6px #000000;
    font-size: 1.1em;
    text-align: left;
}

@media screen and (min-width: 600px) and (max-width: 1100px) {
    #login, #register {
        margin: auto;
        width: 90%;
    }

}

@media screen and (max-width: 600px) {
    #login, #register {
        margin: auto;
        width: 90%;
    }
}