/* 
html, body {
    font-family: "Inter";
} */

/* Involi Field */
.inv-field-hint, .inv-field-label, .inv-field-error
{
    font-weight: 400;
    font-size: 12px;
    font-style: normal;
    line-height: 16px;
    color: var(--color-secondary-text);
}
.inv-field-error, .required.inv-field-error
{
    color: var(--color-error);
}

.inv-field-content
{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 12px;
    background-color:var(--color-ui-light);
    border: 1px solid transparent;
    border-radius: 4px;
    height: 40px;
    box-sizing: border-box;
}
.inv-field-content:hover
{
    background-color: var(--color-ui-light);
    border: 1px solid var(  --color-primary-hover)
}


.inv-field-content input
{
    width: 100%;
}

/* Involi Field Input*/
.inv-field-input
{
    background-color: transparent;
    height: 22px;
    padding: 0;
    border: none;
    font-weight: 400;
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
    width: 100%;
}
.inv-field-input::placeholder
{
    color:  var(--color-placeholder-text);
}
.inv-field-input:focus, .inv-field-input:focus-visible
{
    outline: none;
}


/* Involi layout*/
.inv-layout-horizontal
{
    display: flex;
    flex-direction: row;
    row-gap: 18px;
    justify-content: space-between;
}

/* Involi Button*/
.inv-button
{
    padding: 9px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    font-weight: 400;
    font-size: 16px;
    font-style: normal;
    line-height: 22px;
}

.inv-button-primary
{
    background-color:var(--color-primary);
    color: var(--color-ui-primary);
    fill: var(--color-ui-primary);
}
.inv-button-primary:hover
{
    background-color: var(--color-primary-hover);
    color: var(--color-ui-primary);
    fill: var(--color-ui-primary);
}
.inv-button-primary:active
{
    background-color: var(--color-primary-active);
    color: var(--color-ui-primary);
    fill: var(--color-ui-primary);
}

.inv-icon-button:hover
{
    cursor: pointer;
}

/* Involi Password Strength */
.inv-password-strength
{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 5px 0;
}
.inv-password-strength-wrapper
{
    width: 100%;
    height: 16px;
    border: 1px solid transparent;
    background: transparent;
    border: none;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}
.inv-password-strength-span
{
    border: none;
    border-radius: 4px;
    height: 16px;
    width: 100%;
    background: transparent;
    opacity: 0.5;
}
.inv-password-strength-label
{
    border: none;
    border-radius: 4px;
    font-weight: 400;
    font-size: 12px;
    font-style: normal;
    line-height: 16px;
    color: var(--color-secondary-text);
    height: 16px;
    width: 100%;
    background: transparent;
}
.inv-password-strength-span.strong
{
    background:var(--color-success);
}
.inv-password-strength-span.good
{
    background:var(--color-warning);
}
.inv-password-strength-span.weak
{
    background:var(--color-error);
}

/* Involi Others*/
.hints-list, ul.hints-list
{
    margin: 0;
    padding: 0;
    list-style-position: inside;
    list-style-type: disc;
}
.inv-link
{
    text-decoration: underline;
}
.inv-link:hover
{
    color: var(--color-primary-hover);
}
p
{
    color: var(--color-secondary-text);
}
.strikethrough
{
    text-decoration: line-through;
}

.inv-footer-navigation
{
    padding: 15px 40px;
    margin: 20px -40px -30px;
    border-top: 1px solid var(--color-divider);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: var(--color-ui-primary);
}

.inv-img
{
    height: 30px;
}