* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    background-color: white;
    color: black;
    overflow-x: hidden;
    margin: 0;
}

#wrap {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.content {
    flex: 1;
    margin: auto 5%;
    padding: 0;
    text-align: center;
    max-width: 420px;
}

footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
}

footer p {
    text-align: center;
}

.btn {
    background: black;
    background-image: none;
    border: 1px solid black;
    box-shadow: none;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 10px;
    padding: 6px 30px;
    text-align: center;
    text-decoration: none;
    touch-action: manipulation;
    transition: all 0.2s ease;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
}

.status-message {
    display: none;
}