/* MEDYAJANS - FORM STYLES */
/* Modern form components */

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

/* Labels */
.form-label {
    display: block;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

/* Input Fields */
.form-input,
input[type="text"],
input[type="email"], 
input[type="password"],
input[type="number"] {
    width: 100%;
    background: #0f172a;
    border: 1px solid #334155;
    color: #e2e8f0;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
input:focus {
    outline: none;
    border-color: #4facfe;
    box-shadow: 0 0 0 2px rgba(79, 172, 254, 0.2);
}

/* Select Fields */
.form-select,
select {
    width: 100%;
    background: #0f172a;
    border: 1px solid #334155;
    color: #e2e8f0;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
}

/* Textarea */
.form-textarea,
textarea {
    width: 100%;
    background: #0f172a;
    border: 1px solid #334155;
    color: #e2e8f0;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1rem;
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

/* Form Container */
.form-container {
    background: linear-gradient(135deg, #1e1e2f 0%, #252545 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #334155;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Error States */
.form-input.error,
.form-input:invalid {
    border-color: #fa709a;
}

/* Success States */
.form-input.success {
    border-color: #43e97b;
}

/* Help Text */
.form-help {
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 4px;
}

/* Mobile */
@media (max-width: 768px) {
    .form-input,
    input,
    select,
    textarea {
        font-size: 16px; /* iOS zoom önleme */
        min-height: 44px;
    }
    
    .form-container {
        padding: 20px;
    }
}