body {
    font-family: Nunito;
    background: #ffe8b6;
}

h2 {
    color: #ffffff;
    font-weight: normal;
}

h6 {
    color: #ffffff;
    font-weight: normal;
}

.login-screen {
    background-color: #000;
    border-radius: 5px;
    z-index: 0;
}

input {
    text-align: center;
    background-color: #eaeeef;
    border: 2px solid transparent;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 200;
    transition: border .5s;
}

    input:focus {
        border: 2px solid #ee7d00;
        box-shadow: none;
    }

.btn {
    border: 2px solid transparent;
    background: #ae0f0a;
    color: #ffffff;
    font-size: 20px;
    line-height: 25px;
    text-decoration: none;
    text-shadow: none;
    border-radius: 3px;
    box-shadow: none;
    transition: 0.25s;
    display: block;
    margin: 0 auto;
    z-index: 20;
}

    .btn:hover {
        background-color: #d4312c;
    }
