.inputBox {
    position: relative;
    width: 100%;
    transition: all 100ms ease-in-out;
    font-size: 13px;
}


.inputBox label {
    position: absolute;
    left: 0;
    color: #464545;
    transition: all 100ms ease-in-out;
    transform: translate(10px, -10px);
    padding: 0 10px;
    background-color: #fff;
    margin: 0;
}

.inputBox label svg {
    margin-right: 5px;
    font-size: 11px;
    position: relative;
    top: -1px;
}

.inputBox label sup {
    top: -.4em;
    right: .2em;
    color: var(--red);
}

.inputBox input, .inputBox textarea {
    border: 0;
    font-size: 13px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 5px 0px 5px 10px;
    color: rgb(33, 37, 41);
    outline: 0;
}

.label input, .label textarea {
    padding: 14px 0px 10px 10px;
}

.inputBox input:placeholder-shown, .inputBox textarea:placeholder-shown {
    font-size: inherit;
}

/* .inputBox input:not(:placeholder-shown)+label {}

.inputBox input:not(:placeholder-shown) {} */

.inputBox input:focus+label, .inputBox textarea:focus+label {
    color: var(--primary);
}

.inputBox input:focus, .inputBox textarea:focus {
    border-color: var(--primary);
}


.error input, .error textarea {
    border: 0.1px solid var(--red);
}

.error input:focus, .error textarea:focus {
    border: 0.1px solid var(--red);
}

.error label {
    color: var(--red);
}

.error input:not(:placeholder-shown)+label, .error textarea:not(:placeholder-shown)+label {
    color: var(--red);
}

.error input:focus+label, .error textarea:focus+label {
    color: var(--red);
}

.errorText {
    position: absolute;
    margin-top: 5px;
    margin-bottom: 5px;
    color: var(--red);
    font-size: 11px !important;
    right: 7px;
    top: -8px;
}


.errorText svg {
    margin-right: 4px;
}

.message {
    display: flex;
    position: relative;
    margin: 0;
    color: #2b2a2a;
    font-size: 11px !important;
    margin-top: 5px;
}

.message svg {
    margin-right: 4px;
}