.btn-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f7f7f7;
    text-decoration: none;
}
.btn-circle .custom-select__icon {
    font-size: 1.5rem;
}
.btn-circle:hover {
    background-color: #e7e7e7;
}
.input-wrapper {
    position: relative;
}
.input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 10px 12px;
    font-size: var(--font-md);
    outline: none;
    background: #fff;
}

.input:focus {
    border-color: #0c135b;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

.custom-select {
    position: relative;
}

.custom-select__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    border: 1px solid #e4e7ec;
    background: #fff;
    padding: 10px 12px;
    font-size: 14px;
    cursor: pointer;
    max-height: 40px;
}

.custom-select__trigger:focus-visible,
.custom-select.is-open .custom-select__trigger {
    border-color: #0c135b;
    outline: none;
}

.custom-select__label {
    flex: 1;
    text-align: left;
}

.custom-select__label.is-placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.custom-select__icon {
    font-size: var(--icon-sm);
    color: #777;
}

.custom-select__options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    border-radius: 14px;
    border: 1px solid #e4e7ec;
    background: #fff;
    padding: 8px 6px;
    max-height: 240px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    font-size: var(--font-md);
    transform: translateY(-4px);
    transition: opacity 0.15s, transform 0.15s;
    z-index: 10;
}

.custom-select.is-open .custom-select__options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select__option {
    border-radius: 10px;
    padding: 10px 12px;
    font-size: var(--font-md);
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    outline: none;
}

.custom-select__option:hover {
    background: #e7e7e7;
}

.custom-select__option.is-focused {
    background: #f7f7f7;
}

.custom-select__option.is-selected {
    background: #f7f7f7;
    color: #0c135b;
}
.error-text {
    color: #dc2626;
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
    display: none;
}
.eye-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eye-btn svg {
    width: 18px;
    height: 18px;
    stroke: #9ca3af;
}