* {
    box-sizing: border-box;
}

:root {
    color-scheme: light;
}

body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: #f4f6f8;
    color: #17202a;
    font-family: Arial, sans-serif;
}

.card {
    width: 100%;
    max-width: 480px;
    padding: 34px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .10);
}

h1 {
    margin: 0 0 12px;
    font-size: 29px;
}

p {
    line-height: 1.55;
    color: #59636e;
}

label {
    display: block;
    margin: 18px 0 7px;
    font-weight: 700;
}

input {
    width: 100%;
    padding: 13px;
    border: 1px solid #cbd2d9;
    border-radius: 8px;
    font: inherit;
}

button,
.button {
    display: inline-block;
    width: 100%;
    margin-top: 22px;
    padding: 14px 18px;
    border: 0;
    border-radius: 8px;
    background: #121212;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

button:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.message {
    display: none;
    margin-top: 18px;
    padding: 12px;
    border-radius: 8px;
    line-height: 1.5;
}

.message.show {
    display: block;
}

.message.error {
    background: #fff0f0;
    color: #9e1c1c;
}

.message.success {
    background: #eefbf1;
    color: #176b2c;
}

.links {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.rules {
    font-size: 13px;
}

a {
    color: #17202a;
}

.hidden {
    display: none !important;
}

/* BEGIN PRENSHIP CENTRAL SIGNUP */
.accounts-consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    margin-top: 20px;
}

.accounts-consent input {
    width: auto;
    margin-top: 3px;
}

.accounts-consent label {
    margin: 0;
    font-weight: 400;
    line-height: 1.45;
}

.button.secondary {
    background: transparent;
    border: 1px solid #121212;
    color: #121212;
}
/* END PRENSHIP CENTRAL SIGNUP */
