* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #F2F2F2;
    color: #e8f0f2;

    font-family: Arial, Helvetica, sans-serif;
}

.terminal {
    width: min(650px, calc(100% - 40px));
    padding: 48px;
    background: #0d1215;
    border: 1px solid #34434a;
    border-radius: 8px;
}

.system {
    margin-bottom: 35px;
    font-size: 12px;
    letter-spacing: 3px;
    color: #829097;
}

h1 {
    margin: 0 0 30px;
    color: #33ff33 !important;
    text-shadow: 0 0 5px rgba(51, 255, 51, 0.5) !important;
    font-size: clamp(36px, 7vw, 64px);
    line-height: 1;
    letter-spacing: -2px;
}

.warning {
    padding: 18px 20px;
    margin-bottom: 30px;
    border-left: 3px solid #fff;
    background: #151b1f;
}

.status {
    margin: 30px 0;
    color: #33ff33 !important;
    text-shadow: 0 0 5px rgba(51, 255, 51, 0.5) !important;
    font-family: monospace;
    line-height: 1.9;
    font-weight:bold;
}

.denied {
    font-weight:normal;
    color: red;
    text-shadow: 0 0 5px rgba(255, 92, 51, 0.5) !important;
}

.verified {
    font-weight:normal;
    color: greenyellow;
}

.unauthorized {
    font-weight:normal;
    color: #e8f0f2;
}

.button,
.login-button {
    display: inline-block;

    padding: 15px 28px;

    background: #fff;
    color: #080b0d;

    border-radius: 4px;

    text-decoration: none;
    font-weight: bold;
}

.button:hover,
.login-button:hover {
    opacity: .85;
}

.footer {
    margin-top: 40px;

    font-family: monospace;
    font-size: 12px;

    color: #66747b;
}