.speculr-create-account__container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

.speculr-create-account__container {
    width: 100%;
    height: 100%;
    min-height: 50vh;
    min-width: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: none;
    border-radius: 0;
    position: relative;
    padding: 1vh;
}

.speculr-create-account__logo-wrapper {
}

.speculr-create-account__logo {
    display: block;
    margin: 0 auto;
    max-width: 180px;
    height: auto;
    margin-top: 24px;
}

.speculr-create-account__subtitle {
    font-size: 20px;
    color: #222;
    font-style: italic;
    margin-bottom: 36px;
    margin-top: 0;
    text-align: center;
    font-weight: 100;
}

.speculr-create-account__footer {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    text-align: center;
    color: #222;
    font-size: 12px;
    font-weight: 100;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.speculr-create-account__footer:hover {
    color: #94B9FF;
}

.speculr-create-account__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 2vh 0;
    margin-bottom: 40px;
}

.speculr-create-account__content#createAccountStep3 {
    padding: 2vh 4vh;
}

.speculr-create-account__form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    gap: 22px;
    margin: 0 auto;
}

.speculr-create-account__input-group {
    display: flex;
    align-items: center;
    width: 100%;
    background: #fff;
    padding: 0 5px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border: none;
    border-radius: 8px;
    box-shadow: none;
    outline: none;
    transition: box-shadow 0.2s, border-color 0.2s;
    letter-spacing: 0.01em;
    overflow: hidden;
    height: 54px;
}

.speculr-create-account__input-group::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    /* border thickness */
    background: linear-gradient(to right, #CDFFD8, #94B9FF);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.speculr-create-account__input-group:focus-within {
    box-shadow: 0 2px 12px 0 rgba(148, 185, 255, 0.18);
}

.speculr-create-account__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    min-width: 24px;
}

.speculr-create-account__input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 20px;
    font-style: italic;
    color: #222;
    background: transparent;
    padding: 14px 0 14px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-weight: 100;
}

.speculr-create-account__input::placeholder {
    color: #222;
    font-style: italic;
    font-weight: 100;
}

.speculr-create-account__password-toggle {
    background: none;
    border: none;
    outline: none;
    padding: 0 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-left: 6px;
}

.speculr-create-account__password-eye {
    width: 22px;
    height: 22px;
    color: #222;
    transition: color 0.2s;
}

.speculr-create-account__password-toggle:hover .speculr-create-account__password-eye {
    color: #888;
}

.speculr-create-account__navigation {
    display: flex;
    justify-content: space-between;
}

.speculr-create-account__return {
    margin-right: auto;
}

.speculr-create-account__submit {
    margin-left: auto;
}

.speculr-create-account__return,
.speculr-create-account__submit {
    background: none;
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    align-self: flex-end;
}

.speculr-create-account__return span,
.speculr-create-account__submit span {
    font-size: 20px;
    color: #222;
}

@media (max-width: 600px) {
    .speculr-create-account__container {
        min-height: 70vh;
        height: 100vh;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        background-color: rgba(255, 255, 255, 0.92) !important;
        box-sizing: border-box;
        position: relative;
    }
    .speculr-create-account__footer {
        font-size: 12px;
        bottom: 12px;
    }

    .speculr-create-account__content {
        margin-bottom: 0;
        max-width: 100% !important;
        width: 100% !important;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 70px 20px;
        max-height: 100%;
    }

    .speculr-create-account__content#createAccountStep3 {
    padding: 0 20px;
}
}