@import url('https://fonts.googleapis.com/css?family=Raleway|Patrick+Hand&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: Raleway, sans-serif;
    color: #222f3e;
    background: #e8eef4;
}
#header {
    padding: 20px 40px;
}
#header .site-logo {
    max-width: 200px;
}
.status-error {
    text-align: center;
    position: relative;
    max-width: 512px;
    margin: 120px auto 60px auto;
}
.status-error:before {
    content: '';
    width: 100%;
    background-size: contain;
    height: 512px;
    position: absolute;
    left: 0;
    z-index: -1;
    opacity: 0.2;
}
.page-404 .status-error:before,
.page-410 .status-error:before {
    background: url('404.png') no-repeat 0 0;
    top: -210px;
}
.page-403 .status-error:before {
    background: url('403.png') no-repeat 0 0;
    top: -180px;
}
.status-error h1 {
    font-size: 20rem;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1;
    font-family: 'Patrick Hand', sans-serif;
}
.status-error > strong {
    position: absolute;
    font-size: 1.3rem;
    width: 100%;
    padding: 20px 0;
    margin: 0;
    left: 0;
    top: 240px;
    background: #e8eef4;
}
.status-error > span {
    text-align: center;
    display: block;
    margin-top: -20px;
    line-height: 1.7;
    background: #e8eef4;
    padding-bottom: 30px;
}
a.home-url {
    background: #1E89D1;
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 20px;
    cursor: pointer;
    display: inline-block;
    transition: background 0.3s ease;
}
a.home-url:hover {
    background: #FB9C00;
}
.status-error a.home-url {
    margin-top: 60px;
}
#unlock-form {
    position: relative;
    max-width: 500px;
    margin: 120px auto 60px auto;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
#unlock-form h1 {
    text-align: center;
    font-size: 1.5rem;
    padding: 40px 0 0 0;
    margin: 0;
}
#unlock-form.unlocked h1 {
    padding-bottom: 30px;
}
#unlock-form:before {
    position: absolute;
    content: '';
    background: #fff url('lock.png') no-repeat 8px 10px;
    background-size: 163px;
    width: 80px;
    height: 80px;
    left: 50%;
    margin-left: -40px;
    border-radius: 100%;
    top: -40px;
}
#unlock-form.unlocked:before {
    background-position: -80px 10px;
}
#unlock-form .form {
    padding: 20px 20px 30px 20px;
}
#unlock-form input {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 10px auto;
    font-family: 'Raleway', sans-serif;
    color: #222f3e;
    border-radius: 3px;
    border: 2px solid #e8eef4;
    padding: 5px;
    text-align: center;
    font-size: 70px;
    line-height: 1;
    height: 30px;
    outline: none !important;
}
#unlock-form input::placeholder {
    color: #eee;
}
#unlock-form .error {
    color: red;
    font-size: 13px;
    padding: 0 0 10px 0;
    display: none;
}
#freeze {
    display: none;
    position: fixed;
    z-index: 100;
    background: rgba(255, 255, 255, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 800px) {
    #header {
        text-align: center;
    }
}