/** Signup Form */

.signup-form-wrapper {
    box-sizing: border-box;
    font-family: "Lato", helvetica, arial, sans;
    font-weight: 300;
    font-size: 11pt;
    background-color: #fff;
    color: #4f5057;
}

.signup-form-wrapper {
    max-width: 440px;
    min-width: 360px;
    margin-top: 42px;
    padding: 24px;
    border: 1px solid rgba(221, 221, 221, 0.2);
    border-radius: 6px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.signup-form-title {
    margin: 0px;
    padding-bottom: 0.5rem;
    font-size: 20px;
    font-weight: 700;
}

.signup-form-subtitle {
    padding-bottom: 24px;
    color: #828282;
    font-size: 18px;
    font-weight: 400;
}

.signup-form form {
    margin: 0;
}

.signup-form .register-button {
    width: 100%;
}

.signup-form .notify {
    background: #FFCC00;
    padding: 7px 5px 5px 5px;
    margin: 0px 0px 10px 0px;
    color: #68696b;
    display: none;
}

.signup-form .validation-error {
    display: none;
    margin-top: 10px;
    padding-bottom: 8px;
    font-weight: 400;
    color: #B91C1C;
}

.signup-form .input-container {
    border: 1px solid #AAA;
    margin-bottom: 18px;
    padding-left: 10px;
    background-color: white;
    border-radius: 6px;
}

.signup-form .input-container input {
    width: 100%;
    line-height: 22px;
    height: 42px;
    font-size: 18px;
    border: none;
    border-radius: 6px;
    outline: none;
    border-width: 0px;
    margin: 0px;
    padding: 0px;
    font-weight: 400;
}

.signup-form .register-button {
    width: 100%;
    padding: 12px;
    background-color: #0073C7;
    color: #FFFFFF !important;
    text-decoration: none !important;
    margin: 0px;
    font-weight: 400;
    font-size: 14pt;
    text-align: center;
    cursor: pointer;
    border-radius: 6px;
    border: none;
    outline: none;
    user-select: none;
}

.signup-form .register-button:hover {
    background-color: #005B9E;
}

.email-did-you-mean-container {
    display: none;
    margin: -4px 0px 5px 0px;
    text-align: right;
}

.email-did-you-mean-container .did-you-mean {
    font-weight: bold;
    color: red;
}

.already-dk-member {
    margin-top: 2rem;
    text-align: center;
}

a:hover,
.linklike:hover {
    text-decoration: underline;
}

a:hover,
a:active,
a:visited,
.linklike {
    color: #0071c7
}

.bold {
    font-weight: 700;
}

.linklike {
    cursor: pointer;
    text-decoration: none;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.icon-X {
    background-image: url(/images/x.png);
    background-position: 0px -1px;
    background-repeat: no-repeat;
    padding-left: 20px;
    /* Or size of icon + spacing */
}

.underline {
    text-decoration: underline;
}

/** Social Signup */

.or-sign-up {
    display: flex;
    font-weight: 400;
    color: rgba(107, 114, 128, 1);
    font-size: 18px;
    margin: 0;
}

.or-container-sign-up {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 12px;
    padding-bottom: 18px;
    padding-top: 18px;
}

.or-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    margin: 42px auto 0px;
    font-weight: 400;
}

.or-container-full {
    width: 96%;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    margin: 0px auto 0px;
    font-weight: 400;
}

.or-hr {
    width: 100%;
    border: none;
    border-bottom: 1px solid #D1D5DB;
}

.socialSignup-container {
    display: flex;
    flex-direction: column;
    margin: 0;
    row-gap: 16px;
}

.socialSignup-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px;
    column-gap: 8px;
    font-size: 14pt;
    font-weight: 400;
    cursor: pointer;
}

.socialFB-button {
    background-color: #1877F2;
    color: white;
    border: none;
    border-radius: 6px;
}

.socialApple-button {
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 6px;
}

.socialGoogle-button {
    background-color: #FFFFFF;
    color: #374151;
    border: 1px solid #9CA3AF;
    border-radius: 6px;
}

.sign-in-icon {
    height: 20px;
}

.turnstile-badge {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -150px;
    margin-top: -32px;
    z-index: 1000;
}

.turnstile-badge.visible.with-background:before {
    content: "";
    background-color: #000000;
    opacity: 0.5;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;
    z-index: -1;
}

.captcha-div {
    position: relative;
    width: 100%;
    display: none;
}

.captcha-div.visible {
    display: block;
}

.captcha-div .turnstile-badge {
    position: relative;
    top: unset;
    right: unset;
    left: unset;
    margin: 18px 0;
}