.text-input {
    border: 1px solid #10014615 !important;
    background: #10014605;
    height: 44px;
    padding: 0 0 0 16px;
    border-radius: 100px;
    color: var(--dark-color);
    width: 100%;
    outline: none;
    transition: all 0.1s ease;
    min-width: 266px;
    width: 266px;
}

.register-right-part .text-input {
    width: 100%;
}
.text-input:focus {
    border: 1px solid var(--pink-color) !important;
}

.prefix-phone-number .select2.select2-container {
    overflow: hidden;
}
.error-message {
    display: none;
    font-weight: 600;
    color: var(--red-color);
    line-height: 1.2;
    margin-top: 5px;
}

.text-input-container:has(> .text-input:invalid:not(:focus, :placeholder-shown))
    + .error-message {
    display: block;
}

.text-input::placeholder {
    color: var(--dark-color);
}

.text-input-container label {
    font-weight: 600;
}

.see-password {
    width: 26px;
    position: absolute;
    right: 10px;
    top: 33px;
    cursor: pointer;
}

.text-input.password {
    padding-right: 40px;
}
.phone-number-component .text-input {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.phone-number-component label {
    visibility: hidden;
}


@media (max-width: 980px) {
    .text-input {
        height: 40px;
        font-size: 14px;
    }
}