@media screen and (max-width: 600px) {
    #bp-body {
        position: absolute;
        width: 90%;
        height: auto;
        left: 0;
        top: 45%;
        padding: 0 5%;
        transform: translateY(-50%);
    }
}

@media screen and (min-width: 600px) {
    #bp-body {
        position: absolute;
        width: 600px;
        height: auto;
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

body {
    margin: 0;
    padding: 10px;
    background: #171320;
}

img {
    width: 40px;
    height: auto;
    margin: 0 0 0 50%;
    transform: translateX(-50%);
}

h1 {
    width: 100%;
    margin: 10px 0 0 0;

    font-family: 'Calibri', sans-serif;
    font-size: 36px;
    text-align: center;
    color: #FFF;
}

h2 {
    width: 100%;
    margin: 10px 0 0 0;

    font-family: 'Calibri', sans-serif;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    color: #975353;
}

input[type=text] {
    width: 100%;
    height: 40px;
    margin: 15px 0 0 0;
    padding: 0;

    background: #FFFFFF09;
    color: #FFF;
    border-radius: 10px;
    border: none;
    outline: none;

    font-family: 'Calibri', sans-serif;
    font-size: 20px;
    text-align: center;
}

input[type=submit] {
    width: 100%;
    height: 40px;
    margin: 15px 0 0 0;

    background: #FFFFFF09;
    color: #755eaa;
    border-radius: 10px;
    border: none;
    outline: none;
    transition: all .2s ease;

    font-family: 'Calibri', sans-serif;
    font-size: 20px;
    text-align: center;
}
input[type=submit]:hover {
    background: #FFFFFF12;
}