.emb-registration,
.emb-registration * {
    box-sizing: border-box;
}

.emb-registration {
    width: 100%;
    max-width: none;
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
}

.emb-registration-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.emb-form-row {
    display: flex;
    width: 100%;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.emb-form-row--two > .emb-field {
    flex: 1 1 0;
    min-width: 0;
}

.emb-field {
    width: 100%;
    margin: 0;
    padding: 0;
}

.emb-field input[type="text"],
.emb-field input[type="email"],
.emb-field input[type="tel"],
.emb-field input[type="password"] {
    display: block;
    width: 100%;
    height: 44px;
    margin: 0;
    padding: 0 14px;
    border: 1px solid #d9dde3;
    border-radius: 6px;
    outline: none;
    background: #ffffff;
    color: #222222;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    box-shadow: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
    appearance: none;
}

.emb-field input::placeholder {
    color: #7a7f87;
    opacity: 1;
}

.emb-field input:focus {
    border-color: #d73a40;
    box-shadow: 0 0 0 2px rgba(215, 58, 64, 0.12);
}

.emb-field small {
    display: block;
    margin-top: 5px;
    color: #777c84;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
}

.emb-password-control {
    position: relative;
    width: 100%;
}

.emb-password-control input {
    padding-right: 46px !important;
}

.emb-password-toggle {
    position: absolute;
    top: 50%;
    right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #555b63;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: none;
}

.emb-password-toggle:hover,
.emb-password-toggle:focus {
    background: #f3f4f6;
    color: #222222;
}

.emb-password-toggle:focus-visible {
    outline: 2px solid #d73a40;
    outline-offset: 1px;
}

.emb-password-toggle-icon {
    display: block;
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.emb-password-toggle-icon--hide {
    display: none;
}

.emb-password-toggle.is-visible .emb-password-toggle-icon--show {
    display: none;
}

.emb-password-toggle.is-visible .emb-password-toggle-icon--hide {
    display: block;
}

.emb-turnstile {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 6px;
}

.emb-turnstile .cf-turnstile {
    width: 100%;
}

.emb-registration button.emb-registration-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    margin: 2px 0 0;
    padding: 11px 18px;
    border: 1px solid #d73a40 !important;
    border-radius: 6px;
    background: #d73a40 !important;
    color: #ffffff !important;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(215, 58, 64, 0.16);
    transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.emb-registration button.emb-registration-submit:hover,
.emb-registration button.emb-registration-submit:focus {
    border-color: #c93238 !important;
    background: #c93238 !important;
    color: #ffffff !important;
}

.emb-registration button.emb-registration-submit:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(215, 58, 64, 0.14);
}

.emb-registration button.emb-registration-submit:focus-visible {
    outline: 2px solid #222222;
    outline-offset: 2px;
}

.emb-registration-note {
    margin: 0;
    padding: 2px 14px 0;
    color: #777c84;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.45;
    text-align: center;
}

.emb-registration-success,
.emb-registration-error {
    width: 100%;
    margin: 0 0 14px;
    padding: 11px 13px;
    border-radius: 6px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.45;
}

.emb-registration-success {
    border: 1px solid #b9dfc5;
    background: #f2fbf5;
    color: #235b34;
}

.emb-registration-error {
    border: 1px solid #edb7ba;
    background: #fff5f5;
    color: #8f252b;
}

.emb-registration-success p,
.emb-registration-error p {
    margin: 0;
}

.emb-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 767px) {
    .emb-form-row--two {
        flex-direction: column;
    }

    .emb-registration-note {
        padding-right: 4px;
        padding-left: 4px;
    }
}
