.panel-form {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.panel-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.panel-field label {
    font-size: 0.79rem;
    font-weight: 700;
    color: var(--text);
}

.panel-field input {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--bg-lighter);
    color: var(--text);
    border-radius: 10px;
    padding: 14px 16px;
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.panel-field input:focus {
    border-color: var(--primary);
    background: var(--card);
    transform: translateY(-1px);
}
