body {
    background: url("../img/bg.jpg") repeat;
    position: relative;
    overflow: hidden;
}

form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 35%);
    box-sizing: border-box;
}

fieldset {
    margin: 0 auto;
    width: 340px;
    border: none;
    padding: 25px 50px 35px;
    border-radius: 5px;
}

legend {
    text-align: center;
    box-sizing: content-box;
    color: #fff;
}

h2 {
    color: #fff;
    margin-top: 10px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: normal;
}

label {
    width: 100%;
}

input {
    margin: 10px 0 10px 0;
    width: 100%;
    border-radius: 3px;
    font-size: 100%;
}

input.inner {
    border: 1px solid #C9C9C9;
    padding: 13px;
    box-sizing: border-box;
}

input#login {
    padding: 13px;
    background: #B4981C;
    color: #fff;
    border-style: none;
}

input#login:hover {
    cursor: pointer;
}

#logo {
    text-align: center;
}

#logo img {}

p {
    font-size: 90%;
    color: #fff;
}

.message {
    margin-top: 10px;
}

@media screen and (max-width:1050px) {
    body {
        width: 100%;
        height: 100%;
        overflow-y: hidden;
    }

    form {
        width: 100%;
        transform: translate(-50%, 0%);
        top: 25px;
    }

    input.inner {
        padding: 8px;
    }

    fieldset {
        width: 100%;
        box-sizing: border-box;
    }
}