/* İstek Formu — auth split layout + form (root renkleri) */

.istek-formu-page .form-char-counter {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-muted, #8a9aa6);
    text-align: right;
}

.istek-formu-page .form-char-counter.is-limit {
    color: #ef4444;
}

.istek-formu-page .auth-brand h1 {
    font-family: var(--font-main, 'Chakra Petch', system-ui, sans-serif);
}

.istek-formu-page .auth-form-inner .form-label {
    color: var(--text-secondary);
}

.istek-formu-page .form-input {
    background-color: var(--surface-700, #141414);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-light);
    font-family: var(--font-main, 'Chakra Petch', system-ui, sans-serif);
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.istek-formu-page .form-input::placeholder {
    color: var(--text-muted, #8a9aa6);
}

.istek-formu-page .form-input:hover {
    border-color: rgba(255, 255, 255, 0.14);
}

.istek-formu-page .form-input:focus {
    outline: none;
    border-color: rgba(var(--primary), 0.65);
    background-color: var(--surface-600);
    box-shadow: 0 0 0 3px rgba(var(--primary), 0.15);
}

.istek-select-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.istek-formu-page .istek-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 42px;
    cursor: pointer;
}

.istek-select-caret {
    position: absolute;
    right: 14px;
    font-size: 16px;
    color: var(--text-secondary);
    pointer-events: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.istek-formu-page .istek-select:focus + .istek-select-caret {
    color: var(--brand-red, #f59e0b);
}

.istek-formu-page .istek-textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.5;
    padding-top: 14px;
    padding-bottom: 14px;
}

.istek-formu-page .auth-form-inner .btn-submit {
    border-radius: 12px;
    font-family: var(--font-main, 'Chakra Petch', system-ui, sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.istek-formu-page .auth-form-inner .btn-submit:hover {
    background: var(--accent-hover, #d97706);
    color: var(--text-light, #fff);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(var(--primary), 0.28);
}

.istek-formu-page .auth-form-inner .btn-submit:active {
    transform: translateY(0);
    filter: brightness(0.92);
}

.istek-formu-page .auth-form-inner .btn-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 900px) {
    .istek-formu-page .istek-textarea {
        min-height: 120px;
    }
}
