/* Form stilleri */

/* Seçilen kart gösterimi */
.selected-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    border: 2px solid #0080bc;
    box-shadow: 0 4px 15px rgba(0, 128, 188, 0.1);
}

.selected-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 3px solid #0080bc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.selected-card-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
}

.selected-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #0080bc;
    margin: 0;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form başlığı */
.form-title {
    font-size: 24px;
    color: #0080bc;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

.form-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

/* Form grup stilleri */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

.required {
    color: #dc3545;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #0080bc;
    box-shadow: 0 0 0 3px rgba(0, 128, 188, 0.1);
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background-color: #ffffff;
    cursor: pointer;
    box-sizing: border-box;
}

.form-select:focus {
    outline: none;
    border-color: #0080bc;
    box-shadow: 0 0 0 3px rgba(0, 128, 188, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* Doğum tarihi inputları */
.birth-date-inputs {
    display: flex;
    gap: 10px;
}

.birth-input {
    flex: 1;
    text-align: center;
}

/* Alert mesajları */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-size: 14px;
    text-align: center;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Submit butonu */
.submit-btn {
    background: linear-gradient(135deg, #0080bc 0%, #0099d9 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px auto;
    display: block;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 200px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #006ba6 0%, #0086c7 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 128, 188, 0.3);
}

/* Row sistemi */
.row {
    display: flex;
    gap: 20px;
    margin: 0;
}

.col-md-6 {
    flex: 1;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .form-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .form-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .selected-card {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .selected-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .selected-card-image {
        width: 40px;
        height: 40px;
    }
    
    .selected-card-title {
        font-size: 16px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-control, .form-select {
        padding: 10px 12px;
        font-size: 14px;
        box-sizing: border-box;
    }
    
    .birth-date-inputs {
        gap: 8px;
    }
    
    .row {
        margin: 0;
        flex-direction: column;
        gap: 0;
    }
    
    .col-md-6 {
        padding: 0 5px;
        margin-bottom: 15px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .form-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .selected-card {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .selected-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }
    
    .selected-card-image {
        width: 35px;
        height: 35px;
    }
    
    .selected-card-title {
        font-size: 14px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-label {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .form-control, .form-select {
        padding: 8px 10px;
        font-size: 13px;
        box-sizing: border-box;
    }
    
    .birth-date-inputs {
        gap: 5px;
    }
    
    .row .col-md-6 {
        margin-bottom: 5px;
        padding: 0 3px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 10px;
        font-size: 13px;
        margin-top: 10px;
    }
}
