body {
    margin: 0;
    padding: 0;
    background: url("background.jpg") no-repeat center center fixed;
    background-size: cover;
    box-shadow: 2px 2px 10px #999;
    font-family: sans-serif;
}

.text {
    font-family: 'Open Sans', sans-serif;
}

.texto {
    font-family: 'Open Sans', sans-serif;
}

.loginBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 430px;
    padding: 130px 40px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.5);
}

h2 {
    margin: 0;
    padding: 0 0 5px;
    color: #e00000;
    text-align: center;
}

h5 {
    margin: 0;
    padding: 0 0 15px;
    color: #eeeeee;
    text-shadow: 0 0 0.2em rgb(0, 0, 0), 0 0 0.2em rgb(0, 0, 0);
    text-align: center;
}

.loginBox p {
    padding: 0;
    margin: 0;
    font-weight: bold;
    color: #fff;
}

.loginBox input {
    width: 100%;
    margin-bottom: 20px;
}

.loginBox input[type="text"],
.loginBox input[type="password"] {
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 16px;
}


.loginBox input[type="submit"] {
    border: none;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 16px;
    background: rgb(182, 1, 1);
    cursor: pointer;
    border-radius: 20px;
}

.loginBox input[type="submit"]:hover {
    background: #f8f400;
    color: #05036b;
}

.loginBox a {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.logo {
    width: 315px;
    height: 71px;
    overflow: hidden;
    position: absolute;
    top: calc(105px/2);
    left: calc(7% - 10px);
}

.user {
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: absolute;
    top: calc(-120px/2);
    left: calc(50% - 50px);
    border-radius: 100%;
}