.input-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 0 8px 0;
}

.input-container label {
    color: #46494F;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.input-container input {
    width: 100%;
    color: #46494F;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    padding-left: 30px;
    /* 88.889% */
}

.input-clear-button {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.input-clear-button.visible {
    opacity: 1;
    visibility: visible;
}

.input-clear-button:hover svg path {
    stroke: #000;
}

.input-container input::placeholder {
    color: #46494F;
    opacity: 0.5;
    /* 88.889% */
}

.error-message {
    color: #FF0000;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    margin-top: -12px;
}

.input-container label.icon::before {
    content: '';
    background: transparent url('') no-repeat center center;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.input-container label.user-icon::before {
    background-image: url('/assets/icons/user.svg');
}
